diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-09-09 09:07:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-09 09:07:53 +0200 |
commit | c909120b593753603c24217d2a5cbc1c85b51648 (patch) | |
tree | a34d35867189fd1d00d5fd6f145074a85510e955 /modules | |
parent | b4967e3b408230d5db56b9b98ae88ca2a9d90954 (diff) | |
parent | c4c9e4107346b581bd2a1b1aa9e4ecc56038be81 (diff) |
Merge pull request #64373 from YeldhamDev/edscale_likes_them_floaty
Diffstat (limited to 'modules')
-rw-r--r-- | modules/mono/editor/GodotTools/GodotTools/Build/MSBuildPanel.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/editor/GodotTools/GodotTools/Build/MSBuildPanel.cs b/modules/mono/editor/GodotTools/GodotTools/Build/MSBuildPanel.cs index 4041026426..237ac85267 100644 --- a/modules/mono/editor/GodotTools/GodotTools/Build/MSBuildPanel.cs +++ b/modules/mono/editor/GodotTools/GodotTools/Build/MSBuildPanel.cs @@ -122,7 +122,7 @@ namespace GodotTools.Build { base._Ready(); - CustomMinimumSize = new Vector2(0, 228) * EditorScale; + CustomMinimumSize = new Vector2i(0, (int)(228 * EditorScale)); SizeFlagsVertical = (int)SizeFlags.ExpandFill; var toolBarHBox = new HBoxContainer { SizeFlagsHorizontal = (int)SizeFlags.ExpandFill }; |