- Timestamp:
- Sep 27, 2018 7:39:55 AM (6 years ago)
- Branches:
- ESS_GUI, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc
- Children:
- 3e314e6
- Parents:
- 51b9c14
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/Calculators/DensityPanel.py
r51b9c14 rb6f47be 55 55 self.ui.setupUi(self) 56 56 57 # no reason to have this widget resizable58 self. setFixedSize(self.minimumSizeHint())57 #self.setFixedSize(self.minimumSizeHint()) 58 self.resize(self.minimumSizeHint()) 59 59 60 60 # set validators … … 144 144 try: 145 145 molarMass = toMolarMass(current_text) 146 molarMass = formatNumber(molarMass, high=True) 147 self.model.item(MODEL.MOLAR_MASS).setText(molarMass) 146 # if this doesn't fail, update the model item for formula 147 # so related values can get recomputed 148 self.model.item(MODEL.MOLECULAR_FORMULA).setText(current_text) 148 149 149 150 except (ArithmeticError, ValueError):
Note: See TracChangeset
for help on using the changeset viewer.