summaryrefslogtreecommitdiffstats
path: root/editor/animation_bezier_editor.cpp
diff options
context:
space:
mode:
authoremild <emil.dobetsberger@gmail.com>2024-02-17 20:02:42 +0100
committeremild <emil.dobetsberger@gmail.com>2024-02-20 12:11:45 +0100
commit080315ca6b1834fa643a2e6e1e2cb04bf1bce837 (patch)
tree223e1dfa2b2ca5ef2ac93a0f5ad902cc01133905 /editor/animation_bezier_editor.cpp
parentb7145638d5b235e8e1b2fe039a0cee48a4bbb26d (diff)
downloadredot-engine-080315ca6b1834fa643a2e6e1e2cb04bf1bce837.tar.gz
Fix Animation bezier key selection bugs
Diffstat (limited to 'editor/animation_bezier_editor.cpp')
-rw-r--r--editor/animation_bezier_editor.cpp17
1 files changed, 14 insertions, 3 deletions
diff --git a/editor/animation_bezier_editor.cpp b/editor/animation_bezier_editor.cpp
index aff56bf792..f50e164e0f 100644
--- a/editor/animation_bezier_editor.cpp
+++ b/editor/animation_bezier_editor.cpp
@@ -840,19 +840,30 @@ void AnimationBezierTrackEdit::gui_input(const Ref<InputEvent> &p_event) {
}
accept_event();
}
+ if (ED_IS_SHORTCUT("animation_editor/cut_selected_keys", p_event)) {
+ if (!read_only) {
+ copy_selected_keys(true);
+ }
+ accept_event();
+ }
if (ED_IS_SHORTCUT("animation_editor/copy_selected_keys", p_event)) {
if (!read_only) {
copy_selected_keys(false);
}
accept_event();
}
-
if (ED_IS_SHORTCUT("animation_editor/paste_keys", p_event)) {
if (!read_only) {
paste_keys(-1.0);
}
accept_event();
}
+ if (ED_IS_SHORTCUT("animation_editor/delete_selection", p_event)) {
+ if (!read_only) {
+ delete_selection();
+ }
+ accept_event();
+ }
}
Ref<InputEventKey> key_press = p_event;
@@ -1247,7 +1258,7 @@ void AnimationBezierTrackEdit::gui_input(const Ref<InputEvent> &p_event) {
if (moving_selection_attempt && mb.is_valid() && !mb->is_pressed() && mb->get_button_index() == MouseButton::LEFT) {
if (!read_only) {
- if (moving_selection) {
+ if (moving_selection && (abs(moving_selection_offset.x) > 0 || abs(moving_selection_offset.y) > 0)) {
//combit it
EditorUndoRedoManager *undo_redo = EditorUndoRedoManager::get_singleton();
@@ -1504,7 +1515,7 @@ bool AnimationBezierTrackEdit::_try_select_at_ui_pos(const Point2 &p_pos, bool p
}
set_animation_and_track(animation, pair.first, read_only);
- if (p_deselectable || !selection.has(pair)) {
+ if (!selection.has(pair)) {
selection.clear();
selection.insert(pair);
}