Skip to content

Commit 1c301d6

Browse files
committed
update version to v2.1.0
1 parent 1791b61 commit 1c301d6

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

COMTool/Main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ def initWindow(self):
198198
for baud in parameters.defaultBaudrates:
199199
self.serailBaudrateCombobox.addItem(str(baud))
200200
self.serailBaudrateCombobox.addItem(self.baudrateCustomStr)
201-
self.serailBaudrateCombobox.setCurrentIndex(4)
201+
self.serailBaudrateCombobox.setCurrentIndex(5)
202202
self.serailBaudrateCombobox.setEditable(True)
203203
self.serailBytesCombobox = ComboBox()
204204
self.serailBytesCombobox.addItem("5")

COMTool/assets/qss/style.qss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,8 +160,8 @@ QComboBox QAbstractItemView {
160160
border: 2px solid #f5f5f5;
161161
selection-background-color: #26a2ff;
162162
selection-color:#f5f5f5;
163-
/* min-width:400px;
164-
min-height:10em; */
163+
/* min-width:400px; */
164+
min-height:4em;
165165
}
166166
QComboBox QAbstractItemView::item{
167167
min-height:3em;

COMTool/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
major = 2
3-
minor = 0
3+
minor = 1
44
dev = 0
55

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

0 commit comments

Comments
 (0)