X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fde%2Ftodesbaum%2Fjsite%2Fgui%2FPreferencesPage.java;h=e3fea06a562188b77e5ef061b0ff8c49d45978d3;hb=4bfbc284b49cbdec9f96b456b6920593bf45401a;hp=03e4e6787f65db1328ae82a033dfc7abc458f5aa;hpb=f7816ebbadbf7831b48f03318e2a5866a3932c71;p=jSite.git diff --git a/src/de/todesbaum/jsite/gui/PreferencesPage.java b/src/de/todesbaum/jsite/gui/PreferencesPage.java index 03e4e67..e3fea06 100644 --- a/src/de/todesbaum/jsite/gui/PreferencesPage.java +++ b/src/de/todesbaum/jsite/gui/PreferencesPage.java @@ -20,10 +20,14 @@ package de.todesbaum.jsite.gui; import java.awt.BorderLayout; +import java.awt.GridBagConstraints; +import java.awt.GridBagLayout; +import java.awt.Insets; import java.awt.event.ActionEvent; import javax.swing.AbstractAction; import javax.swing.Action; +import javax.swing.JLabel; import javax.swing.JPanel; import de.todesbaum.jsite.i18n.I18n; @@ -136,6 +140,13 @@ public class PreferencesPage extends TWizardPage { */ private JPanel createPreferencesPanel() { JPanel preferencesPanel = new JPanel(new BorderLayout(12, 12)); + + JPanel fileOptionsPanel = new JPanel(new GridBagLayout()); + preferencesPanel.add(fileOptionsPanel, BorderLayout.CENTER); + + final JLabel fileOptionsLabel = new JLabel("" + I18n.getMessage("jsite.preferences.file-options") + ""); + fileOptionsPanel.add(fileOptionsLabel, new GridBagConstraints(0, 0, 1, 1, 1.0, 0.0, GridBagConstraints.LINE_START, GridBagConstraints.BOTH, new Insets(0, 0, 0, 0), 0, 0)); + return preferencesPanel; }