diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-06-10 09:45:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-10 09:45:22 +0200 |
commit | 3bd8706c1fc0ca04738a818675041bc755e68499 (patch) | |
tree | ece531c9b5619b6a0bd3c96d38b5408d8889bfd6 /editor/plugins | |
parent | e9da28464a48bfe52fb39a638678f200a08ef97a (diff) | |
parent | 09658f7e3ba7ffc87ae9f90aa42f64dfeeb33f40 (diff) |
Merge pull request #61487 from chungd87/fix-animation-UI-bug
Diffstat (limited to 'editor/plugins')
-rw-r--r-- | editor/plugins/animation_player_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/animation_player_editor_plugin.cpp b/editor/plugins/animation_player_editor_plugin.cpp index 32c7a5db4d..98ccc1fdbe 100644 --- a/editor/plugins/animation_player_editor_plugin.cpp +++ b/editor/plugins/animation_player_editor_plugin.cpp @@ -1573,7 +1573,7 @@ AnimationPlayerEditor::AnimationPlayerEditor(AnimationPlayerEditorPlugin *p_plug frame = memnew(SpinBox); hb->add_child(frame); - frame->set_custom_minimum_size(Size2(60, 0)); + frame->set_custom_minimum_size(Size2(80, 0) * EDSCALE); frame->set_stretch_ratio(2); frame->set_step(0.0001); frame->set_tooltip(TTR("Animation position (in seconds).")); |