Skip to content

Commit

Permalink
Fix 'auto' port
Browse files Browse the repository at this point in the history
  • Loading branch information
sembruk committed Sep 14, 2023
1 parent cd88ba4 commit bf31550
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SportiduinoPQ.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ def refreshPorts(self):
elif platform.system() == 'Windows':
availablePorts = ['COM' + str(i) for i in range(32)]
self.ui.cbChoiseCom.clear()
self.ui.cbChoiseCom.addItem("auto")
self.ui.cbChoiseCom.addItem(QCoreApplication.translate("MainWindow", "auto"))
self.ui.cbChoiseCom.addItems(availablePorts)
self.ui.cbUartPort.clear()
self.ui.cbUartPort.addItems(availablePorts)
Expand Down

0 comments on commit bf31550

Please sign in to comment.