Changeset 840 for java/installer2/src/net/oni2/aeinstaller/gui/corepackages
- Timestamp:
- Apr 30, 2013, 2:05:15 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
java/installer2/src/net/oni2/aeinstaller/gui/corepackages/CorePackagesDialog.java
r720 r840 18 18 import net.oni2.aeinstaller.gui.modtable.ModTable.ETableContentType; 19 19 import net.oni2.aeinstaller.gui.packageinfobox.PackageInfoBox; 20 import net.oni2.resourcebundle.UTF8ResourceBundleLoader; 20 21 21 22 import org.javabuilders.BuildResult; … … 28 29 private static final long serialVersionUID = -5444213842599816301L; 29 30 30 private ResourceBundle bundle = ResourceBundle31 private ResourceBundle bundle = UTF8ResourceBundleLoader 31 32 .getBundle("net.oni2.aeinstaller.localization." 32 33 + getClass().getSimpleName()); … … 60 61 getRootPane().getActionMap().put("close", closeAction); 61 62 62 contents.setDividerLocation(SettingsManager.getInstance().get("win_core_divloc", 550)); 63 contents.setDividerLocation(SettingsManager.getInstance().get( 64 "win_core_divloc", 550)); 63 65 contents.setResizeWeight(0.4); 64 66 … … 69 71 tblTools.addModSelectionListener(this); 70 72 71 setSize(SettingsManager.getInstance().get("win_core_width", 950), SettingsManager.getInstance().get("win_core_height", 600)); 73 setSize(SettingsManager.getInstance().get("win_core_width", 950), 74 SettingsManager.getInstance().get("win_core_height", 600)); 72 75 setLocationRelativeTo(null); 73 76 } … … 80 83 @SuppressWarnings("unused") 81 84 private void closing() { 82 SettingsManager.getInstance().put("win_core_divloc", contents.getDividerLocation()); 85 SettingsManager.getInstance().put("win_core_divloc", 86 contents.getDividerLocation()); 83 87 SettingsManager.getInstance().put("win_core_width", getWidth()); 84 88 SettingsManager.getInstance().put("win_core_height", getHeight());
Note:
See TracChangeset
for help on using the changeset viewer.