Fix wrong pan direction in animation player ui

This commit is contained in:
Bernhard Liebl 2018-03-10 11:38:33 +01:00
parent 47addcf9d0
commit efc9633b33

View file

@ -2930,8 +2930,8 @@ void AnimationKeyEditor::_track_editor_gui_input(const Ref<InputEvent> &p_input)
Ref<InputEventPanGesture> pan_gesture = p_input; Ref<InputEventPanGesture> pan_gesture = p_input;
if (pan_gesture.is_valid()) { if (pan_gesture.is_valid()) {
h_scroll->set_value(h_scroll->get_value() - h_scroll->get_page() * pan_gesture->get_delta().x / 8); h_scroll->set_value(h_scroll->get_value() + h_scroll->get_page() * pan_gesture->get_delta().x / 8);
v_scroll->set_value(v_scroll->get_value() - v_scroll->get_page() * pan_gesture->get_delta().y / 8); v_scroll->set_value(v_scroll->get_value() + v_scroll->get_page() * pan_gesture->get_delta().y / 8);
} }
} }