From 371b5a450afaa4f81d53a7763c3ff253c5912c23 Mon Sep 17 00:00:00 2001 From: Eric Rybicki Date: Tue, 21 Jan 2020 10:23:09 +0100 Subject: [PATCH] Clip text in NodeDock toolbuttons to prevent dock size changes Fixes #35367 --- editor/node_dock.cpp | 2 ++ 1 file changed, 2 insertions(+) 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");