mirror of
https://github.com/godotengine/godot.git
synced 2024-11-14 16:13:08 +00:00
Allow the editor dock to have a lower width
This commit is contained in:
parent
ebdb374d80
commit
6cf13e881c
@ -4970,7 +4970,7 @@ EditorNode::EditorNode() {
|
||||
dock_vb->add_child(dock_hb);
|
||||
|
||||
dock_select = memnew(Control);
|
||||
dock_select->set_custom_minimum_size(Size2(128, 64) * EDSCALE);
|
||||
dock_select->set_custom_minimum_size(Size2(64, 0) * EDSCALE);
|
||||
dock_select->connect("gui_input", this, "_dock_select_input");
|
||||
dock_select->connect("draw", this, "_dock_select_draw");
|
||||
dock_select->connect("mouse_exited", this, "_dock_popup_exit");
|
||||
@ -4981,7 +4981,7 @@ EditorNode::EditorNode() {
|
||||
dock_select_rect_over = -1;
|
||||
dock_popup_selected = -1;
|
||||
for (int i = 0; i < DOCK_SLOT_MAX; i++) {
|
||||
dock_slot[i]->set_custom_minimum_size(Size2(230, 220) * EDSCALE);
|
||||
dock_slot[i]->set_custom_minimum_size(Size2(0, 64) * EDSCALE);
|
||||
dock_slot[i]->set_v_size_flags(Control::SIZE_EXPAND_FILL);
|
||||
dock_slot[i]->set_popup(dock_select_popup);
|
||||
dock_slot[i]->connect("pre_popup_pressed", this, "_dock_pre_popup", varray(i));
|
||||
@ -5497,8 +5497,8 @@ EditorNode::EditorNode() {
|
||||
right_r_vsplit->hide();
|
||||
|
||||
// Add some offsets to left_r and main hsplits to make LEFT_R and RIGHT_L docks wider than minsize
|
||||
left_r_hsplit->set_split_offset(40 * EDSCALE);
|
||||
main_hsplit->set_split_offset(-40 * EDSCALE);
|
||||
left_r_hsplit->set_split_offset(100 * EDSCALE);
|
||||
main_hsplit->set_split_offset(-100 * EDSCALE);
|
||||
|
||||
// Define corresponding default layout
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user