Changeset 33c0561 in sasview for src/sas/qtgui/Plotting
- 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/Plotting
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/Plotting/AddText.py
r53c771e r33c0561 12 12 super(AddText, self).__init__(parent) 13 13 self.setupUi(self) 14 # disable the context help icon 15 self.setWindowFlags(self.windowFlags() & ~QtCore.Qt.WindowContextHelpButtonHint) 14 16 15 17 self._font = QtGui.QFont() -
src/sas/qtgui/Plotting/ColorMap.py
r8fad50b r33c0561 28 28 self.setupUi(self) 29 29 assert(isinstance(data, Data2D)) 30 # disable the context help icon 31 self.setWindowFlags(self.windowFlags() & ~QtCore.Qt.WindowContextHelpButtonHint) 30 32 31 33 self.data = data -
src/sas/qtgui/Plotting/LinearFit.py
re4c475b7 r33c0561 30 30 31 31 self.setupUi(self) 32 # disable the context help icon 33 self.setWindowFlags(self.windowFlags() & ~QtCore.Qt.WindowContextHelpButtonHint) 34 32 35 assert(isinstance(max_range, tuple)) 33 36 assert(isinstance(fit_range, tuple)) -
src/sas/qtgui/Plotting/MaskEditor.py
ra0ad146 r33c0561 3 3 import numpy as np 4 4 5 from PyQt5 import QtWidgets 5 from PyQt5 import QtWidgets, QtCore 6 6 7 7 from sas.qtgui.Plotting.PlotterData import Data2D … … 24 24 25 25 self.setupUi(self) 26 # disable the context help icon 27 self.setWindowFlags(self.windowFlags() & ~QtCore.Qt.WindowContextHelpButtonHint) 26 28 27 29 self.data = data -
src/sas/qtgui/Plotting/PlotProperties.py
rfacf4ca r33c0561 18 18 super(PlotProperties, self).__init__(parent) 19 19 self.setupUi(self) 20 # disable the context help icon 21 self.setWindowFlags(self.windowFlags() & ~QtCore.Qt.WindowContextHelpButtonHint) 22 20 23 self.setFixedSize(self.minimumSizeHint()) 21 24 -
src/sas/qtgui/Plotting/ScaleProperties.py
r54492dc r33c0561 27 27 super(ScaleProperties, self).__init__(parent) 28 28 self.setupUi(self) 29 # disable the context help icon 30 self.setWindowFlags(self.windowFlags() & ~QtCore.Qt.WindowContextHelpButtonHint) 29 31 30 32 # Set up comboboxes -
src/sas/qtgui/Plotting/SetGraphRange.py
rd6b8a1d r33c0561 17 17 18 18 self.setupUi(self) 19 # disable the context help icon 20 self.setWindowFlags(self.windowFlags() & ~QtCore.Qt.WindowContextHelpButtonHint) 21 19 22 assert(isinstance(x_range, tuple)) 20 23 assert(isinstance(y_range, tuple)) -
src/sas/qtgui/Plotting/WindowTitle.py
r4992ff2 r33c0561 3 3 from "Graph_n" to any ASCII text. 4 4 """ 5 from PyQt5 import QtWidgets 5 from PyQt5 import QtWidgets, QtCore 6 6 7 7 from sas.qtgui.Plotting.UI.WindowTitleUI import Ui_WindowTitle … … 12 12 super(WindowTitle, self).__init__(parent) 13 13 self.setupUi(self) 14 # disable the context help icon 15 self.setWindowFlags(self.windowFlags() & ~QtCore.Qt.WindowContextHelpButtonHint) 16 14 17 self.txtTitle.setText(new_title) 15 18
Note: See TracChangeset
for help on using the changeset viewer.