Skip to content

Commit

Permalink
Merge pull request apache#2703 from DevCharly/NETBEANS-5026
Browse files Browse the repository at this point in the history
[NETBEANS-5026] Fix wheel/trackpad scrolling in notifications details window
  • Loading branch information
neilcsmith-net authored Jan 23, 2021
2 parents 435cca2 + 7be1ef2 commit 9b5068b
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,8 @@ private void init() {
lblEmptyDetails.setEnabled(false);

JScrollPane scrollPane = new JScrollPane(detailsPanel);
scrollPane.getVerticalScrollBar().setUnitIncrement(10);
scrollPane.getHorizontalScrollBar().setUnitIncrement(10);
splitPane.setRightComponent(scrollPane);

toolBar.setFocusable(false);
Expand Down

0 comments on commit 9b5068b

Please sign in to comment.