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