Changeset 873 for java/installer2/src/net/oni2/aeinstaller/gui/settings
- Timestamp:
- May 20, 2013, 1:24:58 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
r872 r873 41 41 private JCheckBox chkNotifyNewPackagesOnStart; 42 42 private JCheckBox chkNotifyDepsAfterInstall; 43 private JCheckBox chkShowTipsAtStart; 43 44 private JCheckBox chkCopyIntro; 44 45 private JCheckBox chkCopyOutro; … … 86 87 chkNotifyDepsAfterInstall.setSelected(set.get("notifyDepsAfterInstall", 87 88 false)); 89 chkShowTipsAtStart.setSelected(set.get("showTips", true)); 88 90 chkCopyIntro.setSelected(set.get("copyintro", false)); 89 91 chkCopyOutro.setSelected(set.get("copyoutro", true)); … … 145 147 set.put("notifyDepsAfterInstall", 146 148 chkNotifyDepsAfterInstall.isSelected()); 149 set.put("showTips", chkShowTipsAtStart.isSelected()); 147 150 set.put("copyintro", chkCopyIntro.isSelected()); 148 151 set.put("copyoutro", chkCopyOutro.isSelected()); -
java/installer2/src/net/oni2/aeinstaller/gui/settings/SettingsDialog.yml
r860 r873 14 14 - JCheckBox(name=chkNotifyNewPackagesOnStart, horizontalTextPosition=LEADING, text=lblNotifyNewPackagesOnStart) 15 15 - JCheckBox(name=chkNotifyDepsAfterInstall, horizontalTextPosition=LEADING, text=lblNotifyDepsAfterInstall, toolTipText=lblNotifyDepsAfterInstall.tooltip) 16 - JCheckBox(name=chkShowTipsAtStart, horizontalTextPosition=LEADING, text=lblShowTipsAtStart) 16 17 - JCheckBox(name=chkCopyIntro, horizontalTextPosition=LEADING, text=lblCopyIntro) 17 18 - JCheckBox(name=chkCopyOutro, horizontalTextPosition=LEADING, text=lblCopyOutro) … … 21 22 >chkNotifyNewPackagesOnStart [pref] 22 23 >chkNotifyDepsAfterInstall [pref] 24 >chkShowTipsAtStart [pref] 23 25 >chkCopyIntro [pref] 24 26 >chkCopyOutro [pref]
Note:
See TracChangeset
for help on using the changeset viewer.