Skip to content

Commit

Permalink
update version to v2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Neutree committed Dec 10, 2021
1 parent 1791b61 commit 1c301d6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion COMTool/Main.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ def initWindow(self):
for baud in parameters.defaultBaudrates:
self.serailBaudrateCombobox.addItem(str(baud))
self.serailBaudrateCombobox.addItem(self.baudrateCustomStr)
self.serailBaudrateCombobox.setCurrentIndex(4)
self.serailBaudrateCombobox.setCurrentIndex(5)
self.serailBaudrateCombobox.setEditable(True)
self.serailBytesCombobox = ComboBox()
self.serailBytesCombobox.addItem("5")
Expand Down
4 changes: 2 additions & 2 deletions COMTool/assets/qss/style.qss
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,8 @@ QComboBox QAbstractItemView {
border: 2px solid #f5f5f5;
selection-background-color: #26a2ff;
selection-color:#f5f5f5;
/* min-width:400px;
min-height:10em; */
/* min-width:400px; */
min-height:4em;
}
QComboBox QAbstractItemView::item{
min-height:3em;
Expand Down
2 changes: 1 addition & 1 deletion COMTool/version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

major = 2
minor = 0
minor = 1
dev = 0

__version__ = "{}.{}.{}".format(major, minor, dev)
Expand Down

0 comments on commit 1c301d6

Please sign in to comment.