Changeset 24289


Ignore:
Timestamp:
2011-07-19T09:17:41+12:00 (13 years ago)
Author:
sjm84
Message:

Fixed the slow scroll speed in the plugin configuration windows

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/gli/src/org/greenstone/gatherer/cdm/ArgumentConfiguration.java

    r18593 r24289  
    115115    content_pane.setLayout(new BorderLayout());
    116116    content_pane.add(header, BorderLayout.NORTH);
    117     content_pane.add(new JScrollPane(central_pane), BorderLayout.CENTER);
     117    JScrollPane scrollPane = new JScrollPane(central_pane);
     118    scrollPane.getVerticalScrollBar().setUnitIncrement(16);
     119    content_pane.add(scrollPane, BorderLayout.CENTER);
    118120    content_pane.add(button_pane, BorderLayout.SOUTH);
    119121
Note: See TracChangeset for help on using the changeset viewer.