diff options
author | Juan Linietsky <reduzio@gmail.com> | 2015-04-28 22:46:05 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2015-04-28 22:46:05 -0300 |
commit | fa83cf3c962f182db9d953ee4af38e8bb6bdb0ef (patch) | |
tree | 253ba241a03ead1507b9efe3412b072ff48302e0 /tools | |
parent | 16a73bccd28d313f5eb6d1ca5c4c01aab91633b5 (diff) |
label properly adjusted to size when inserting key, fixes #1607
Diffstat (limited to 'tools')
-rw-r--r-- | tools/editor/animation_editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/editor/animation_editor.cpp b/tools/editor/animation_editor.cpp index 8d666f0508..c60c1d03d3 100644 --- a/tools/editor/animation_editor.cpp +++ b/tools/editor/animation_editor.cpp @@ -2538,7 +2538,7 @@ void AnimationKeyEditor::_query_insert(const InsertData& p_id) { insert_confirm->set_text("Create "+itos(insert_data.size())+" NEW tracks and insert keys?"); insert_confirm->get_ok()->set_text("Create"); - insert_confirm->popup_centered(Size2(300,100)); + insert_confirm->popup_centered_minsize(); insert_query=true; } else { call_deferred("_insert_delay"); |