diff options
| author | Stijn Hinlopen <f.a.hinlopen@gmail.com> | 2020-07-11 18:45:19 +0200 |
|---|---|---|
| committer | Stijn Hinlopen <f.a.hinlopen@gmail.com> | 2020-07-14 14:35:22 +0200 |
| commit | 526e060b7320de63501680549a5b586573e27a01 (patch) | |
| tree | 87587fd4ab8546d8396229f0274cf75be94827cb /editor/animation_track_editor.cpp | |
| parent | 2921827387b339fef98cb761f9571dd0f1dd1986 (diff) | |
| download | redot-engine-526e060b7320de63501680549a5b586573e27a01.tar.gz | |
Resize dialogs (FileDialog, EditorFileDialog, Reparent, SceneTreeDialog and resource depency dialogs).
Diffstat (limited to 'editor/animation_track_editor.cpp')
| -rw-r--r-- | editor/animation_track_editor.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/animation_track_editor.cpp b/editor/animation_track_editor.cpp index 1d6770a32e..f3561dc03e 100644 --- a/editor/animation_track_editor.cpp +++ b/editor/animation_track_editor.cpp @@ -4370,7 +4370,7 @@ void AnimationTrackEditor::_add_track(int p_type) { return; } adding_track_type = p_type; - pick_track->popup_centered_ratio(); + pick_track->popup_scenetree_dialog(); } void AnimationTrackEditor::_new_track_property_selected(String p_name) { @@ -5731,7 +5731,7 @@ AnimationTrackEditor::AnimationTrackEditor() { pick_track = memnew(SceneTreeDialog); add_child(pick_track); - pick_track->set_title(TTR("Pick the node that will be animated:")); + pick_track->set_title(TTR("Pick a node to animate:")); pick_track->connect("selected", callable_mp(this, &AnimationTrackEditor::_new_track_node_selected)); prop_selector = memnew(PropertySelector); add_child(prop_selector); |
