Преглед на файлове

Fix selecting keys in Track Edit

Francois Belair преди 3 години
родител
ревизия
52649d5402
променени са 2 файла, в които са добавени 2 реда и са изтрити 2 реда
  1. 1 1
      editor/animation_track_editor.cpp
  2. 1 1
      editor/animation_track_editor.h

+ 1 - 1
editor/animation_track_editor.cpp

@@ -4952,7 +4952,7 @@ void AnimationTrackEditor::_add_method_key(const String &p_method) {
 	EditorNode::get_singleton()->show_warning(TTR("Method not found in object: ") + p_method);
 }
 
-void AnimationTrackEditor::_key_selected(int p_track, int p_key, bool p_single) {
+void AnimationTrackEditor::_key_selected(int p_key, bool p_single, int p_track) {
 	ERR_FAIL_INDEX(p_track, animation->get_track_count());
 	ERR_FAIL_INDEX(p_key, animation->track_get_key_count(p_track));
 

+ 1 - 1
editor/animation_track_editor.h

@@ -406,7 +406,7 @@ class AnimationTrackEditor : public VBoxContainer {
 
 	Map<SelectedKey, KeyInfo> selection;
 
-	void _key_selected(int p_track, int p_key, bool p_single);
+	void _key_selected(int p_key, bool p_single, int p_track);
 	void _key_deselected(int p_key, int p_track);
 
 	bool moving_selection;