Changeset 646 for AE/installer2/src/net/oni2/aeinstaller/gui/settings
- Timestamp:
- Jan 23, 2013, 12:43:13 PM (12 years ago)
- Location:
- AE/installer2/src/net/oni2/aeinstaller/gui/settings
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
AE/installer2/src/net/oni2/aeinstaller/gui/settings/SettingsDialog.java
r641 r646 35 35 36 36 private JCheckBox chkNotifyOnStart; 37 private JCheckBox chkNotifyDepsAfterInstall; 37 38 private JCheckBox chkCopyIntro; 38 39 private JCheckBox chkCopyOutro; … … 71 72 72 73 chkNotifyOnStart.setSelected(set.get("notifyupdates", true)); 74 chkNotifyDepsAfterInstall.setSelected(set.get("notifyDepsAfterInstall", false)); 73 75 chkCopyIntro.setSelected(set.get("copyintro", false)); 74 76 chkCopyOutro.setSelected(set.get("copyoutro", true)); … … 80 82 81 83 set.put("notifyupdates", chkNotifyOnStart.isSelected()); 84 set.put("notifyDepsAfterInstall", chkNotifyDepsAfterInstall.isSelected()); 82 85 set.put("copyintro", chkCopyIntro.isSelected()); 83 86 set.put("copyoutro", chkCopyOutro.isSelected()); -
AE/installer2/src/net/oni2/aeinstaller/gui/settings/SettingsDialog.yml
r625 r646 13 13 - JLabel(name=lblNotifyOnStart, text=lblNotifyOnStart) 14 14 - JCheckBox(name=chkNotifyOnStart) 15 - JLabel(name=lblNotifyDepsAfterInstall, text=lblNotifyDepsAfterInstall, toolTipText=lblNotifyDepsAfterInstall.tooltip) 16 - JCheckBox(name=chkNotifyDepsAfterInstall, toolTipText=lblNotifyDepsAfterInstall.tooltip) 15 17 - JLabel(name=lblCopyIntro, text=lblCopyIntro) 16 18 - JCheckBox(name=chkCopyIntro) … … 18 20 - JCheckBox(name=chkCopyOutro) 19 21 - MigLayout: | 20 [min] [grow] 21 >lblNotifyOnStart chkNotifyOnStart [pref] 22 >lblCopyIntro chkCopyIntro [pref] 23 >lblCopyOutro chkCopyOutro [pref] 22 [min] [grow] 23 >lblNotifyOnStart chkNotifyOnStart [pref] 24 >lblNotifyDepsAfterInstall chkNotifyDepsAfterInstall [pref] 25 >lblCopyIntro chkCopyIntro [pref] 26 >lblCopyOutro chkCopyOutro [pref] 24 27 - JPanel(name=panUI, groupTitle=panUI): 25 28 - JLabel(name=lblLaF, text=lblLaF)
Note:
See TracChangeset
for help on using the changeset viewer.