mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

jvergara
04.55.2009 70dacfc28342afef7ac03c413b99460167675532
Fix for issue 4335 (Scroll wheel in Control Panel is waaay too slow)
Increase the value of the unit increment in the scroll panes used by the control panel.
1 files modified
5 ■■■■ changed files
opends/src/guitools/org/opends/guitools/controlpanel/util/Utilities.java 5 ●●●● patch | view | raw | blame | history
opends/src/guitools/org/opends/guitools/controlpanel/util/Utilities.java
@@ -431,7 +431,10 @@
    if (scroll.getVerticalScrollBar() != null)
    {
      int increment = scroll.getVerticalScrollBar().getUnitIncrement();
      scroll.getVerticalScrollBar().setUnitIncrement(increment * 3);
      if (increment < 16)
      {
        scroll.getVerticalScrollBar().setUnitIncrement(16);
      }
    }
  }