We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d66a7d commit 05bcdceCopy full SHA for 05bcdce
app/src/processing/app/Base.java
@@ -309,6 +309,9 @@ public Base(String[] args) throws Exception {
309
// Setup board-dependent variables.
310
onBoardOrPortChange();
311
312
+ this.pdeKeywords = new PdeKeywords();
313
+ this.pdeKeywords.reload();
314
+
315
CommandlineParser parser = CommandlineParser.newCommandlineParser(args);
316
317
for (String path : parser.getFilenames()) {
@@ -345,9 +348,6 @@ public Base(String[] args) throws Exception {
345
348
// them.
346
349
Preferences.save();
347
350
- this.pdeKeywords = new PdeKeywords();
- this.pdeKeywords.reload();
-
351
if (parser.isInstallBoard()) {
352
ContributionsIndexer indexer = new ContributionsIndexer(BaseNoGui.getSettingsFolder());
353
ContributionInstaller installer = new ContributionInstaller(indexer) {
0 commit comments