Changeset 33c0561 in sasview for src/sas/qtgui/Utilities
- Timestamp:
- Jan 9, 2019 6:09:39 AM (6 years ago)
- Branches:
- ESS_GUI, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_opencl, ESS_GUI_sync_sascalc
- Children:
- cf9f39e
- Parents:
- bbcf9f0
- Location:
- src/sas/qtgui/Utilities
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/Utilities/AddMultEditor.py
r287d356 r33c0561 56 56 57 57 self.setupUi(self) 58 # disable the context help icon 59 self.setWindowFlags(self.windowFlags() & ~QtCore.Qt.WindowContextHelpButtonHint) 58 60 59 61 # uncheck self.chkOverwrite -
src/sas/qtgui/Utilities/ModelEditor.py
rf2e199e r33c0561 15 15 super(ModelEditor, self).__init__(parent) 16 16 self.setupUi(self) 17 # disable the context help icon 18 self.setWindowFlags(self.windowFlags() & ~QtCore.Qt.WindowContextHelpButtonHint) 17 19 18 20 self.is_python = is_python -
src/sas/qtgui/Utilities/PluginManager.py
raed0532 r33c0561 3 3 from shutil import copyfile 4 4 5 from PyQt5 import QtWidgets 5 from PyQt5 import QtWidgets, QtCore 6 6 7 7 from sas.sascalc.fit import models … … 21 21 super(PluginManager, self).__init__(parent._parent) 22 22 self.setupUi(self) 23 24 # disable the context help icon 25 self.setWindowFlags(self.windowFlags() & ~QtCore.Qt.WindowContextHelpButtonHint) 23 26 24 27 self.parent = parent -
src/sas/qtgui/Utilities/ReportDialog.py
r859d960 r33c0561 6 6 from xhtml2pdf import pisa 7 7 8 from PyQt5 import QtWidgets 8 from PyQt5 import QtWidgets, QtCore 9 9 from PyQt5 import QtPrintSupport 10 10 … … 23 23 super(ReportDialog, self).__init__(parent._parent) 24 24 self.setupUi(self) 25 # disable the context help icon 26 self.setWindowFlags(self.windowFlags() & ~QtCore.Qt.WindowContextHelpButtonHint) 25 27 26 28 assert isinstance(report_list, list) -
src/sas/qtgui/Utilities/TabbedModelEditor.py
r59b925c1 r33c0561 6 6 import traceback 7 7 8 from PyQt5 import QtWidgets 8 from PyQt5 import QtWidgets, QtCore 9 9 10 10 from sas.sascalc.fit import models … … 28 28 29 29 self.setupUi(self) 30 31 # disable the context help icon 32 self.setWindowFlags(self.windowFlags() & ~QtCore.Qt.WindowContextHelpButtonHint) 30 33 31 34 # globals
Note: See TracChangeset
for help on using the changeset viewer.