Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b31cbd7

Browse files
committedSep 23, 2019
fixup! Separate the boards menu per platform
1 parent c33a3e9 commit b31cbd7

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed
 

‎app/src/processing/app/Base.java

+1-3
Original file line numberDiff line numberDiff line change
@@ -1470,9 +1470,7 @@ public void actionPerformed(ActionEvent actionevent) {
14701470

14711471
int platformCount = 0;
14721472
for (TargetPackage targetPackage : BaseNoGui.packages.values()) {
1473-
for (TargetPlatform targetPlatform : targetPackage.platforms()) {
1474-
++platformCount;
1475-
}
1473+
platformCount += targetPackage.platforms().size();
14761474
}
14771475

14781476
// Cycle through all packages

0 commit comments

Comments
 (0)
Please sign in to comment.