1
0
mirror of https://github.com/godotengine/godot.git synced 2025-12-04 17:04:49 +00:00

Keep the bottom panel size separate.

This commit is contained in:
DexterFstone
2025-10-10 22:12:01 -07:00
committed by Dexter
parent 2cc031f3a3
commit cd943d18b2
4 changed files with 53 additions and 9 deletions

View File

@@ -718,6 +718,8 @@ private:
void _update_main_menu_type();
void _add_to_main_menu(const String &p_name, PopupMenu *p_menu);
void _bottom_panel_resized();
protected:
friend class FileSystemDock;
@@ -743,6 +745,7 @@ public:
static EditorTitleBar *get_title_bar() { return singleton->title_bar; }
static VSplitContainer *get_top_split() { return singleton->top_split; }
static DockSplitContainer *get_center_split() { return singleton->center_split; }
static EditorBottomPanel *get_bottom_panel() { return singleton->bottom_panel; }
static EditorMainScreen *get_editor_main_screen() { return singleton->editor_main_screen; }