Skip to content

Commit

Permalink
Merge pull request #93257 from bruvzg/antrk_popup_drag
Browse files Browse the repository at this point in the history
[AnimationTrackEdit] Cancel key drag when popup is shown.
  • Loading branch information
akien-mga committed Jun 18, 2024
2 parents 2a47014 + 0e76739 commit a06a5e2
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions editor/animation_track_editor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2826,6 +2826,9 @@ void AnimationTrackEdit::gui_input(const Ref<InputEvent> &p_event) {
}
menu->reset_size();

moving_selection_attempt = false;
moving_selection = false;

Vector2 popup_pos = get_screen_position() + update_mode_rect.position + Vector2(0, update_mode_rect.size.height);
menu->set_position(popup_pos);
menu->popup();
Expand Down Expand Up @@ -2872,6 +2875,9 @@ void AnimationTrackEdit::gui_input(const Ref<InputEvent> &p_event) {
}
menu->reset_size();

moving_selection_attempt = false;
moving_selection = false;

Vector2 popup_pos = get_screen_position() + interp_mode_rect.position + Vector2(0, interp_mode_rect.size.height);
menu->set_position(popup_pos);
menu->popup();
Expand All @@ -2889,6 +2895,9 @@ void AnimationTrackEdit::gui_input(const Ref<InputEvent> &p_event) {
menu->add_icon_item(get_editor_theme_icon(SNAME("InterpWrapLoop")), TTR("Wrap Loop Interp"), MENU_LOOP_WRAP);
menu->reset_size();

moving_selection_attempt = false;
moving_selection = false;

Vector2 popup_pos = get_screen_position() + loop_wrap_rect.position + Vector2(0, loop_wrap_rect.size.height);
menu->set_position(popup_pos);
menu->popup();
Expand Down Expand Up @@ -2943,6 +2952,9 @@ void AnimationTrackEdit::gui_input(const Ref<InputEvent> &p_event) {
}
menu->reset_size();

moving_selection_attempt = false;
moving_selection = false;

menu->set_position(get_screen_position() + get_local_mouse_position());
menu->popup();

Expand All @@ -2965,6 +2977,10 @@ void AnimationTrackEdit::gui_input(const Ref<InputEvent> &p_event) {

path->set_text(animation->track_get_path(track));
Vector2 theme_ofs = path->get_theme_stylebox(CoreStringName(normal), SNAME("LineEdit"))->get_offset();

moving_selection_attempt = false;
moving_selection = false;

path_popup->set_position(get_screen_position() + path_rect.position - theme_ofs);
path_popup->set_size(path_rect.size);
path_popup->popup();
Expand Down

0 comments on commit a06a5e2

Please sign in to comment.