Fix caret height. DPI is handled in the GetCharPosition method of the text boxes.

This commit is contained in:
2026-07-27 21:02:16 -05:00
parent 9c1817330d
commit d2057d9c4f
+1 -1
View File
@@ -563,7 +563,7 @@ namespace FlaxEngine.GUI
caretPos.X - (caretWidth * 0.5f),
caretPos.Y,
caretWidth,
height * DpiScale);
height);
}
}