summaryrefslogtreecommitdiff
path: root/editor/animation_track_editor.cpp
diff options
context:
space:
mode:
authorPouleyKetchoupp <pouleyketchoup@gmail.com>2019-11-04 10:12:15 +0100
committerPouleyKetchoupp <pouleyketchoup@gmail.com>2019-11-04 10:12:36 +0100
commit13c88878c4c6daae1f5ce83b516f15fdd8a45dd6 (patch)
tree0a2e9ea617da9b73f2f6f8821457401e5a3327cc /editor/animation_track_editor.cpp
parent5dac35a300504bfa193e98102eac727b287323ea (diff)
Fixed cases where labels with autowrap can overflow the editor ui
Fixes #33155
Diffstat (limited to 'editor/animation_track_editor.cpp')
-rw-r--r--editor/animation_track_editor.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/animation_track_editor.cpp b/editor/animation_track_editor.cpp
index 7183d34d4f..33f833afa4 100644
--- a/editor/animation_track_editor.cpp
+++ b/editor/animation_track_editor.cpp
@@ -5818,6 +5818,7 @@ AnimationTrackEditor::AnimationTrackEditor() {
info_message->set_valign(Label::VALIGN_CENTER);
info_message->set_align(Label::ALIGN_CENTER);
info_message->set_autowrap(true);
+ info_message->set_custom_minimum_size(Size2(100 * EDSCALE, 0));
info_message->set_anchors_and_margins_preset(PRESET_WIDE, PRESET_MODE_KEEP_SIZE, 8 * EDSCALE);
main_panel->add_child(info_message);