diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-01-21 11:18:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-21 11:18:35 +0100 |
commit | 423f15262f44a7688dcd102d7b9257dc2571f683 (patch) | |
tree | 4b35458ed84b191b426a61061f5d395124a8247f /editor | |
parent | 4bc98c105ddf053e1e61a536270ae4fc2d32e89e (diff) | |
parent | 371b5a450afaa4f81d53a7763c3ff253c5912c23 (diff) |
Merge pull request #35399 from ericrybick/35367-signals-dock-size-jumps-when-selecting-nodes
Clip text in NodeDock toolbuttons to prevent dock size changes
Diffstat (limited to 'editor')
-rw-r--r-- | editor/node_dock.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/editor/node_dock.cpp b/editor/node_dock.cpp index 20b8b3f5cb..c53c5f330b 100644 --- a/editor/node_dock.cpp +++ b/editor/node_dock.cpp @@ -105,6 +105,7 @@ NodeDock::NodeDock() { connections_button->set_toggle_mode(true); connections_button->set_pressed(true); connections_button->set_h_size_flags(SIZE_EXPAND_FILL); + connections_button->set_clip_text(true); mode_hb->add_child(connections_button); connections_button->connect("pressed", this, "show_connections"); @@ -113,6 +114,7 @@ NodeDock::NodeDock() { groups_button->set_toggle_mode(true); groups_button->set_pressed(false); groups_button->set_h_size_flags(SIZE_EXPAND_FILL); + groups_button->set_clip_text(true); mode_hb->add_child(groups_button); groups_button->connect("pressed", this, "show_groups"); |