Skip to content

Commit

Permalink
optimize for linux
Browse files Browse the repository at this point in the history
  • Loading branch information
Neutree committed Nov 13, 2018
1 parent adbcf43 commit e22a906
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
7 changes: 5 additions & 2 deletions COMTool/helpAbout.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
import sys
import parameters
try:
import parameters
except ImportError:
from COMTool import parameters
import os

versionMajor = 1
versionMinor = 7
versionDev = 3
date = "2018.7.2"
date = "2018.11.13"

def strAbout():
pathDirList = sys.argv[0].replace("\\", "/").split("/")
Expand Down
4 changes: 4 additions & 0 deletions COMToolData/assets/qss/style-dark.qss
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,10 @@ QComboBox:editable {
background: #3a3a3a;
}

QComboBox:disabled {
color:gray;
}

QComboBox:!editable, QComboBox::drop-down:editable {
background: #3a3a3a;
}
Expand Down

0 comments on commit e22a906

Please sign in to comment.