Merge pull request #210 from honeyhoney/feature_scrollable_plugin_config_panel

Plugin configuration panel is now scrollable
This commit is contained in:
Adam
2017-11-12 20:54:06 -05:00
committed by GitHub

View File

@@ -131,6 +131,7 @@ public class ConfigPanel extends PluginPanel
//Make the panel scrollable
scrollPane = new JScrollPane(panel);
scrollPane.setBorder(BorderFactory.createEmptyBorder());
scrollPane.setPreferredSize(new Dimension(PANEL_WIDTH, PANEL_HEIGHT));
scrollPane.getVerticalScrollBar().setUnitIncrement(16); //Otherwise scrollspeed is really slow
return scrollPane;
}