diff options
author | PouleyKetchoupp <pouleyketchoup@gmail.com> | 2019-11-18 09:42:28 +0100 |
---|---|---|
committer | PouleyKetchoupp <pouleyketchoup@gmail.com> | 2019-11-18 09:42:28 +0100 |
commit | 7e9a45842e19e5ffd1c6ec59f04312adaf147b13 (patch) | |
tree | 76a45271393e96b408a787a0bf1284c85e95ae3c /editor/script_editor_debugger.h | |
parent | 58ca9f17a2650bb381972210d1babbf34ac6819c (diff) |
Fixed ScriptEditorDebugger minimum size
Changed to MarginContainer to enforce debugger tabs minimum size on the parent, avoids overlapping controls with Profiler and Network Profiler tabs.
Fixes #20837
Diffstat (limited to 'editor/script_editor_debugger.h')
-rw-r--r-- | editor/script_editor_debugger.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/script_editor_debugger.h b/editor/script_editor_debugger.h index 14b024d066..c885614dab 100644 --- a/editor/script_editor_debugger.h +++ b/editor/script_editor_debugger.h @@ -55,9 +55,9 @@ class EditorNetworkProfiler; class ScriptEditorDebuggerInspectedObject; -class ScriptEditorDebugger : public Control { +class ScriptEditorDebugger : public MarginContainer { - GDCLASS(ScriptEditorDebugger, Control); + GDCLASS(ScriptEditorDebugger, MarginContainer); public: enum CameraOverride { |