Changeset 60af928 in sasview for src/sas/qtgui/Perspectives/Invariant
- Timestamp:
- Feb 27, 2017 5:56:13 AM (8 years ago)
- Branches:
- ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc
- Children:
- f46f6dc
- Parents:
- 6ee82dd
- Location:
- src/sas/qtgui/Perspectives/Invariant
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/Perspectives/Invariant/InvariantDetails.py
- Property mode changed from 100755 to 100644
rf721030 r60af928 5 5 6 6 # local 7 from UI.InvariantDetailsUI import Dialog7 from UI.InvariantDetailsUI import Ui_Dialog 8 8 from InvariantUtils import WIDGETS 9 9 10 class DetailsDialog( Dialog):10 class DetailsDialog(QtGui.QDialog, Ui_Dialog): 11 11 """ 12 12 """ 13 13 def __init__(self, parent): 14 Dialog.__init__(self, parent) 14 super(DetailsDialog, self).__init__(parent) 15 16 self.setupUi(self) 15 17 16 18 self.progressBar.setMinimum(0) -
src/sas/qtgui/Perspectives/Invariant/UI/InvariantDetailsUI.py
r488c49d r60af928 144 144 self.lblWarning.setText(_translate("Dialog", "<html><head/><body><p>No Details on calculations available...</p></body></html>", None)) 145 145 146 147 class Dialog(QtGui.QDialog, Ui_Dialog):148 def __init__(self, parent=None, f=QtCore.Qt.WindowFlags()):149 QtGui.QDialog.__init__(self, parent, f)150 151 self.setupUi(self)152
Note: See TracChangeset
for help on using the changeset viewer.