Trivial code tweaks

This commit is contained in:
Vhati 2013-09-18 01:17:41 -04:00
parent 098edb3f57
commit 2cdba9062e
2 changed files with 4 additions and 2 deletions

View file

@ -83,6 +83,8 @@ public class ForumScraper {
ignoredURLs.add( "http://www.ftlgame.com/forum/viewtopic.php?f=11&t=16842" );
// Beginning Scrap Advantage is bundled in GMM.
ignoredURLs.add( "http://www.ftlgame.com/forum/viewtopic.php?f=4&t=2464" );
// Engi Scrap Advantage is bundled in SMM.
ignoredURLs.add( "http://www.ftlgame.com/forum/viewtopic.php?f=12&t=17102" );
BasicParser parser = new BasicParser();

View file

@ -235,11 +235,11 @@ public class FieldEditorPanel extends JPanel {
JPanel panel = new JPanel();
panel.setLayout( new BoxLayout( panel, BoxLayout.Y_AXIS ) );
panel.add( Box.createVerticalStrut(10) );
panel.add( Box.createVerticalStrut(8) );
JSeparator sep = new JSeparator();
sep.setPreferredSize( new Dimension(1, sep.getPreferredSize().height) );
panel.add( sep );
panel.add( Box.createVerticalStrut(10) );
panel.add( Box.createVerticalStrut(8) );
this.add( panel, gridC );
gridC.gridy++;