diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-06-24 14:54:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-24 14:54:53 +0200 |
commit | fec3a48e53e9d98d068c96c23104088de82dc65c (patch) | |
tree | d6f43842dd0f60b73fe0676b2967674f569d7bc0 /modules/mono/editor/GodotTools | |
parent | faae24637cdf8ce50e06e9968342003fcd2ca470 (diff) | |
parent | 5ad1a1b5e747a3d8065fc71e14e69932d9d8f428 (diff) |
Merge pull request #59918 from piiertho/enhancement/rename-controll-minimum_size-to-custom_minimum_size
Diffstat (limited to 'modules/mono/editor/GodotTools')
-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 9e8f7ef1b1..3c020a2589 100644 --- a/modules/mono/editor/GodotTools/GodotTools/Build/MSBuildPanel.cs +++ b/modules/mono/editor/GodotTools/GodotTools/Build/MSBuildPanel.cs @@ -126,7 +126,7 @@ namespace GodotTools.Build { base._Ready(); - MinimumSize = new Vector2(0, 228) * EditorScale; + CustomMinimumSize = new Vector2(0, 228) * EditorScale; SizeFlagsVertical = (int)SizeFlags.ExpandFill; var toolBarHBox = new HBoxContainer { SizeFlagsHorizontal = (int)SizeFlags.ExpandFill }; |