Skip to content

Commit

Permalink
Increase mouse wheel scroll speed
Browse files Browse the repository at this point in the history
  • Loading branch information
hstr0100 committed Jan 28, 2025
1 parent ef623ea commit da0f2ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
rootProject.version = '1.2.4'
rootProject.version = '1.2.5'

subprojects {
repositories {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ public void windowDeiconified(WindowEvent e) {
queueScrollPane.setBorder(BorderFactory.createEmptyBorder());
queueScrollPane.setBackground(color(BACKGROUND));
//queueScrollPane.getViewport().setBackground(color(BACKGROUND));
queueScrollPane.getVerticalScrollBar().setUnitIncrement(4);
queueScrollPane.getVerticalScrollBar().setUnitIncrement(8);
queueScrollPane.setHorizontalScrollBarPolicy(ScrollPaneConstants.HORIZONTAL_SCROLLBAR_AS_NEEDED);
queueScrollPane.setVerticalScrollBarPolicy(ScrollPaneConstants.VERTICAL_SCROLLBAR_AS_NEEDED);
mainPanel.add(queueScrollPane, BorderLayout.CENTER);
Expand Down

0 comments on commit da0f2ae

Please sign in to comment.