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 e8c4980 commit 050a642Copy full SHA for 050a642
app/src/processing/app/Editor.java
@@ -1119,7 +1119,9 @@ public int compare(BoardPort o1, BoardPort o2) {
1119
} else {
1120
lastProtocolTranslated = port.getProtocol();
1121
}
1122
- serialMenu.add(new JMenuItem(_(lastProtocolTranslated)));
+ JMenuItem lastProtocolMenuItem = new JMenuItem(_(lastProtocolTranslated));
1123
+ lastProtocolMenuItem.setEnabled(false);
1124
+ serialMenu.add(lastProtocolMenuItem);
1125
1126
String address = port.getAddress();
1127
String label = port.getLabel();
0 commit comments