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

jvergara
04.55.2009 4e60de832271d25d8c9620e2693e28b3c4c42bf2
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
opendj-sdk/opends/src/guitools/org/opends/guitools/controlpanel/util/Utilities.java 5 ●●●● patch | view | raw | blame | history
opendj-sdk/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);
      }
    }
  }