mirror of
https://github.com/arduino/Arduino.git
synced 2025-02-21 15:54:39 +01:00
fixed a bug introduced by my rebase after 24bef6b.
This commit is contained in:
parent
02447a0170
commit
093483602f
@ -118,6 +118,11 @@ public class Base {
|
|||||||
static public void main(String args[]) throws Exception {
|
static public void main(String args[]) throws Exception {
|
||||||
initPlatform();
|
initPlatform();
|
||||||
|
|
||||||
|
// Portable folder
|
||||||
|
portableFolder = getContentFile("portable");
|
||||||
|
if (!portableFolder.exists())
|
||||||
|
portableFolder = null;
|
||||||
|
|
||||||
// run static initialization that grabs all the prefs
|
// run static initialization that grabs all the prefs
|
||||||
Preferences.init(null);
|
Preferences.init(null);
|
||||||
|
|
||||||
@ -159,13 +164,6 @@ public class Base {
|
|||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
|
|
||||||
initPlatform();
|
|
||||||
|
|
||||||
// Portable folder
|
|
||||||
portableFolder = getContentFile("portable");
|
|
||||||
if (!portableFolder.exists())
|
|
||||||
portableFolder = null;
|
|
||||||
|
|
||||||
// // Set the look and feel before opening the window
|
// // Set the look and feel before opening the window
|
||||||
// try {
|
// try {
|
||||||
// platform.setLookAndFeel();
|
// platform.setLookAndFeel();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user