add Mac OS X horizontal scroll with mouse wheel (touch pad two fingers scrolling)

This commit is contained in:
Anciety 2019-04-18 11:10:22 +08:00
parent 4ce178c419
commit 414bef0ce1

View File

@ -1428,7 +1428,16 @@ public class FieldPanel extends JPanel
}
else {
hoverHandler.stopHover();
scrollView(scrollAmount);
if (e.isShiftDown()) {
// horizontal scroll (only move viewport)
if (viewport != null) {
Point pos = viewport.getViewPosition();
viewport.setViewPosition(new Point(Math.max(0, pos.x + scrollAmount), pos.y));
}
} else {
scrollView(scrollAmount);
}
}
e.consume();
}