Skip to content

Commit e22a906

Browse files
committed
optimize for linux
1 parent adbcf43 commit e22a906

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

COMTool/helpAbout.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
import sys
2-
import parameters
2+
try:
3+
import parameters
4+
except ImportError:
5+
from COMTool import parameters
36
import os
47

58
versionMajor = 1
69
versionMinor = 7
710
versionDev = 3
8-
date = "2018.7.2"
11+
date = "2018.11.13"
912

1013
def strAbout():
1114
pathDirList = sys.argv[0].replace("\\", "/").split("/")

COMToolData/assets/qss/style-dark.qss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,10 @@ QComboBox:editable {
9999
background: #3a3a3a;
100100
}
101101

102+
QComboBox:disabled {
103+
color:gray;
104+
}
105+
102106
QComboBox:!editable, QComboBox::drop-down:editable {
103107
background: #3a3a3a;
104108
}

0 commit comments

Comments
 (0)