summaryrefslogtreecommitdiffstats
path: root/editor
diff options
context:
space:
mode:
authorThaddeus Crews <repiteo@outlook.com>2024-11-26 13:04:59 -0600
committerThaddeus Crews <repiteo@outlook.com>2024-11-26 13:04:59 -0600
commitbbc54692c05ff6a85a6aeefbf5b9c87de91983d8 (patch)
tree927204a5cee99e2312d489bd9f39c50737a806be /editor
parent13d59b28c17c2f93b3de01a3e818a4e72ab8a29d (diff)
parentd5fbc7dab1d4d417e4b4f9e9db680135b4636055 (diff)
downloadredot-engine-bbc54692c05ff6a85a6aeefbf5b9c87de91983d8.tar.gz
Merge pull request #98419 from KoBeWi/dialog_scalar
Improve Scale Selection in Animation tab
Diffstat (limited to 'editor')
-rw-r--r--editor/animation_track_editor.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/editor/animation_track_editor.cpp b/editor/animation_track_editor.cpp
index 0c2b230786..1a612a3e55 100644
--- a/editor/animation_track_editor.cpp
+++ b/editor/animation_track_editor.cpp
@@ -6642,6 +6642,7 @@ void AnimationTrackEditor::_edit_menu_pressed(int p_option) {
case EDIT_SCALE_SELECTION:
case EDIT_SCALE_FROM_CURSOR: {
scale_dialog->popup_centered(Size2(200, 100) * EDSCALE);
+ scale->get_line_edit()->grab_focus();
} break;
case EDIT_SCALE_CONFIRM: {
if (selection.is_empty()) {
@@ -7889,10 +7890,13 @@ AnimationTrackEditor::AnimationTrackEditor() {
scale->set_min(-99999);
scale->set_max(99999);
scale->set_step(0.001);
+ scale->set_select_all_on_focus(true);
vbc->add_margin_child(TTR("Scale Ratio:"), scale);
- scale_dialog->connect(SceneStringName(confirmed), callable_mp(this, &AnimationTrackEditor::_edit_menu_pressed).bind(EDIT_SCALE_CONFIRM));
+ scale_dialog->connect(SceneStringName(confirmed), callable_mp(this, &AnimationTrackEditor::_edit_menu_pressed).bind(EDIT_SCALE_CONFIRM), CONNECT_DEFERRED);
add_child(scale_dialog);
+ scale_dialog->register_text_enter(scale->get_line_edit());
+
//
ease_dialog = memnew(ConfirmationDialog);
ease_dialog->set_title(TTR("Select Transition and Easing"));