We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02447a0 commit 0934836Copy full SHA for 0934836
app/src/processing/app/Base.java
@@ -118,6 +118,11 @@ public class Base {
118
static public void main(String args[]) throws Exception {
119
initPlatform();
120
121
+ // Portable folder
122
+ portableFolder = getContentFile("portable");
123
+ if (!portableFolder.exists())
124
+ portableFolder = null;
125
+
126
// run static initialization that grabs all the prefs
127
Preferences.init(null);
128
@@ -159,13 +164,6 @@ static public void main(String args[]) throws Exception {
159
164
}
160
165
*/
161
166
162
- initPlatform();
163
-
- // Portable folder
- portableFolder = getContentFile("portable");
- if (!portableFolder.exists())
167
- portableFolder = null;
168
169
// // Set the look and feel before opening the window
170
// try {
171
// platform.setLookAndFeel();
0 commit comments