Changeset 860 for java/installer2/src/net/oni2/aeinstaller/gui/settings
- Timestamp:
- May 8, 2013, 12:25:39 PM (12 years ago)
- Location:
- java/installer2/src/net/oni2/aeinstaller/gui/settings
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
java/installer2/src/net/oni2/aeinstaller/gui/settings/SettingsDialog.java
r856 r860 39 39 40 40 private JCheckBox chkNotifyOnStart; 41 private JCheckBox chkNotifyNewPackagesOnStart; 41 42 private JCheckBox chkNotifyDepsAfterInstall; 42 43 private JCheckBox chkCopyIntro; … … 81 82 82 83 chkNotifyOnStart.setSelected(set.get("notifyupdates", true)); 84 chkNotifyNewPackagesOnStart.setSelected(set.get("notifynewpackages", 85 true)); 83 86 chkNotifyDepsAfterInstall.setSelected(set.get("notifyDepsAfterInstall", 84 87 false)); … … 137 140 138 141 set.put("notifyupdates", chkNotifyOnStart.isSelected()); 142 set.put("notifynewpackages", chkNotifyNewPackagesOnStart.isSelected()); 139 143 set.put("notifyDepsAfterInstall", 140 144 chkNotifyDepsAfterInstall.isSelected()); -
java/installer2/src/net/oni2/aeinstaller/gui/settings/SettingsDialog.yml
r856 r860 12 12 - JPanel(name=panCommon, groupTitle=panCommon): 13 13 - JCheckBox(name=chkNotifyOnStart, horizontalTextPosition=LEADING, text=lblNotifyOnStart) 14 - JCheckBox(name=chkNotifyNewPackagesOnStart, horizontalTextPosition=LEADING, text=lblNotifyNewPackagesOnStart) 14 15 - JCheckBox(name=chkNotifyDepsAfterInstall, horizontalTextPosition=LEADING, text=lblNotifyDepsAfterInstall, toolTipText=lblNotifyDepsAfterInstall.tooltip) 15 16 - JCheckBox(name=chkCopyIntro, horizontalTextPosition=LEADING, text=lblCopyIntro) … … 17 18 - MigLayout: | 18 19 [grow] 19 >chkNotifyOnStart [pref] 20 >chkNotifyDepsAfterInstall [pref] 21 >chkCopyIntro [pref] 22 >chkCopyOutro [pref] 20 >chkNotifyOnStart [pref] 21 >chkNotifyNewPackagesOnStart [pref] 22 >chkNotifyDepsAfterInstall [pref] 23 >chkCopyIntro [pref] 24 >chkCopyOutro [pref] 23 25 - JPanel(name=panProxy, groupTitle=panProxy): 24 26 - JLabel(name=empty)
Note:
See TracChangeset
for help on using the changeset viewer.