- select correct android target after target list has been updated using android tool

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@8204 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
This commit is contained in:
nor..67 2011-09-06 11:25:56 +00:00
parent 72a8006a11
commit a4814166b5

View File

@ -40,6 +40,9 @@ public class MobileCustomizerPanel extends javax.swing.JPanel implements ActionL
AndroidTarget androidTarget = it.next(); AndroidTarget androidTarget = it.next();
jComboBox1.addItem(androidTarget); jComboBox1.addItem(androidTarget);
} }
if (properties.getProperty("mobile.android.target") != null) {
setSelected(properties.getProperty("mobile.android.target"));
}
} }
private void loadProperties() { private void loadProperties() {