Changeset 676a430 in sasview


Ignore:
Timestamp:
Sep 12, 2018 6:48:34 AM (6 years ago)
Author:
Piotr Rozyczko <rozyczko@…>
Branches:
ESS_GUI, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc
Children:
6889ba2
Parents:
f37cab0
Message:

Use only unique parameters in the polydisp. table SASVIEW-1064
Move the 2D color bar a bit to the right so it doesn't overlap with the plot.

Location:
src/sas/qtgui
Files:
2 edited

Legend:

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

    rf37cab0 r676a430  
    25512551            parameters += self.model_parameters.orientation_parameters 
    25522552 
     2553        # only use uniques 
     2554        parameters = list(set(parameters)) 
     2555 
    25532556        [self.setPolyModelParameters(i, param) for i, param in \ 
    25542557            enumerate(parameters) if param.polydisperse] 
  • src/sas/qtgui/Plotting/Plotter2D.py

    rfce6c55 r676a430  
    445445                                        self.ymin, self.ymax)) 
    446446 
    447             cbax = self.figure.add_axes([0.84, 0.2, 0.02, 0.7]) 
     447            cbax = self.figure.add_axes([0.88, 0.2, 0.02, 0.7]) 
    448448 
    449449            # Current labels for axes 
Note: See TracChangeset for help on using the changeset viewer.