mirror of
https://github.com/godotengine/godot.git
synced 2024-11-10 22:23:07 +00:00
fixed holding alt while zooming zooms in by 2 increments.
This commit is contained in:
parent
fd4572cc45
commit
3550354fd3
@ -38,7 +38,9 @@ bool ViewPanner::gui_input(const Ref<InputEvent> &p_event, Rect2 p_canvas_rect)
|
||||
Ref<InputEventMouseButton> mb = p_event;
|
||||
if (mb.is_valid()) {
|
||||
Vector2 scroll_vec = Vector2((mb->get_button_index() == MouseButton::WHEEL_RIGHT) - (mb->get_button_index() == MouseButton::WHEEL_LEFT), (mb->get_button_index() == MouseButton::WHEEL_DOWN) - (mb->get_button_index() == MouseButton::WHEEL_UP));
|
||||
if (scroll_vec != Vector2()) {
|
||||
// Moving the scroll wheel sends two events: one with pressed as true,
|
||||
// and one with pressed as false. Make sure we only process one of them.
|
||||
if (scroll_vec != Vector2() && mb->is_pressed()) {
|
||||
if (control_scheme == SCROLL_PANS) {
|
||||
if (mb->is_ctrl_pressed()) {
|
||||
scroll_vec.y *= mb->get_factor();
|
||||
|
Loading…
Reference in New Issue
Block a user