We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a1d6da9 + e803061 commit 6c7d104Copy full SHA for 6c7d104
app/src/processing/app/Base.java
@@ -1696,6 +1696,12 @@ public void rebuildProgrammerMenu() {
1696
addProgrammersForPlatform(boardPlatform, programmerMenus, group);
1697
if (corePlatform != null)
1698
addProgrammersForPlatform(corePlatform, programmerMenus, group);
1699
+
1700
+ if (programmerMenus.isEmpty()) {
1701
+ JMenuItem item = new JMenuItem(tr("No programmers available for this board"));
1702
+ item.setEnabled(false);
1703
+ programmerMenus.add(item);
1704
+ }
1705
}
1706
1707
public void addProgrammersForPlatform(TargetPlatform platform, List<JMenuItem> menus, ButtonGroup group) {
0 commit comments