Skip to content
Snippets Groups Projects
Commit cc269a20 authored by Nick Draper's avatar Nick Draper Committed by GitHub
Browse files

Merge pull request #20838 from mantidproject/20835_FDABug

Frequency Domain Analysis was not opening on Windows 7 or 8
parents 545ed906 0e135c7c
No related merge requests found
......@@ -53,8 +53,8 @@ def setTableHeaders(table):
if os.name != "nt":
return
version=QtCore.QSysInfo.WindowsVersion
windows10=160 # version code?
if(version==windows10):
WINDOWS_10=160
if(version==WINDOWS_10):
styleSheet= \
"QHeaderView::section{"\
+"border-top:0px solid #D8D8D8;"\
......@@ -72,4 +72,5 @@ def setTableHeaders(table):
+"background-color:white;"\
+"}"
table.setStyleSheet(styleSheet)
return styleSheet
return styleSheet
return
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment