From: David ‘Bombe’ Roden Date: Fri, 23 May 2008 20:37:47 +0000 (+0000) Subject: push content of panel to top X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;h=34a047561daab16685702cfdf16716fc008106bd;p=jSite2.git push content of panel to top git-svn-id: http://trooper/svn/projects/jSite/trunk@945 c3eda9e8-030b-0410-8277-bc7414b0a119 --- diff --git a/src/net/pterodactylus/jsite/gui/ProjectPanel.java b/src/net/pterodactylus/jsite/gui/ProjectPanel.java index 9a2e62b..13246f1 100644 --- a/src/net/pterodactylus/jsite/gui/ProjectPanel.java +++ b/src/net/pterodactylus/jsite/gui/ProjectPanel.java @@ -135,6 +135,8 @@ public class ProjectPanel extends JPanel implements DocumentListener, I18nable { propertiesPanel.add(descriptionLabel, new GridBagConstraints(0, 1, 1, 1, 0.0, 0.0, GridBagConstraints.LINE_START, GridBagConstraints.BOTH, new Insets(6, 0, 0, 0), 0, 0)); propertiesPanel.add(descriptionTextField, new GridBagConstraints(1, 1, 1, 1, 1.0, 0.0, GridBagConstraints.LINE_START, GridBagConstraints.BOTH, new Insets(6, 6, 0, 0), 0, 0)); + propertiesPanel.add(new JPanel(), new GridBagConstraints(0, 2, 2, 1, 1.0, 1.0, GridBagConstraints.LINE_START, GridBagConstraints.BOTH, new Insets(0, 0, 0, 0), 0, 0)); + return propertiesPanel; }