Changeset 9078 in josm for trunk/src/org/openstreetmap/josm/gui/preferences/display/LafPreference.java
- Timestamp:
- 2015-12-02T00:05:09+01:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/preferences/display/LafPreference.java
r8510 r9078 55 55 private JosmComboBox<LookAndFeelInfo> lafCombo; 56 56 JPanel panel; 57 private JCheckBox showSplashScreen = new JCheckBox(tr("Show splash screen at startup")); 58 private JCheckBox showID = new JCheckBox(tr("Show object ID in selection lists")); 59 private JCheckBox showLocalizedName = new JCheckBox(tr("Show localized name in selection lists")); 60 private JCheckBox modeless = new JCheckBox(tr("Modeless working (Potlatch style)")); 61 private JCheckBox dynamicButtons = new JCheckBox(tr("Dynamic buttons in side menus")); 62 private JCheckBox isoDates = new JCheckBox(tr("Display ISO dates")); 63 private JCheckBox nativeFileChoosers = new JCheckBox(tr("Use native file choosers (nicer, but do not support file filters)")); 57 private final JCheckBox showSplashScreen = new JCheckBox(tr("Show splash screen at startup")); 58 private final JCheckBox showID = new JCheckBox(tr("Show object ID in selection lists")); 59 private final JCheckBox showLocalizedName = new JCheckBox(tr("Show localized name in selection lists")); 60 private final JCheckBox modeless = new JCheckBox(tr("Modeless working (Potlatch style)")); 61 private final JCheckBox dynamicButtons = new JCheckBox(tr("Dynamic buttons in side menus")); 62 private final JCheckBox isoDates = new JCheckBox(tr("Display ISO dates")); 63 private final JCheckBox nativeFileChoosers = new JCheckBox(tr("Use native file choosers (nicer, but do not support file filters)")); 64 64 65 65 @Override
Note:
See TracChangeset
for help on using the changeset viewer.