Changeset 34e5170 in sasview


Ignore:
Timestamp:
Oct 3, 2018 3:41:24 AM (5 years ago)
Author:
Piotr Rozyczko <piotr.rozyczko@…>
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:
3b95b3b
Parents:
a98014ab
Message:

Show a nicer (shorter) representation of q_min/q_max on the front of the
fitting widget

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/qtgui/Perspectives/Fitting/FittingWidget.py

    ra98014ab r34e5170  
    19301930            self.options_widget.state() 
    19311931        # set Q range labels on the main tab 
    1932         self.lblMinRangeDef.setText(str(self.q_range_min)) 
    1933         self.lblMaxRangeDef.setText(str(self.q_range_max)) 
     1932        self.lblMinRangeDef.setText(GuiUtils.formatNumber(self.q_range_min, high=True)) 
     1933        self.lblMaxRangeDef.setText(GuiUtils.formatNumber(self.q_range_max, high=True)) 
    19341934        self.recalculatePlotData() 
    19351935 
Note: See TracChangeset for help on using the changeset viewer.