Change mouse-panning to right-click.

This commit is contained in:
2025-05-09 12:56:27 -05:00
parent bd893f5c5e
commit 6b23290c14

View File

@@ -561,7 +561,7 @@ void FractalInspectorApp::OnMouseButtonDown(const ReWindow::MouseButtonDownEvent
if (scene->ObserveMouseInput(btn, true))
return;
if (btn == JUI::MouseButton::Left)
if (btn == JUI::MouseButton::Right)
panning = true;
@@ -581,7 +581,7 @@ void FractalInspectorApp::OnMouseButtonUp(const ReWindow::MouseButtonUpEvent &e)
if (scene->ObserveMouseInput(btn, false))
return;
if (btn == JUI::MouseButton::Left)
if (btn == JUI::MouseButton::Right)
panning = false;
/*if (e.Button == MouseButtons::Left)