Ignore:
Timestamp:
Nov 24, 2017 7:57:08 AM (6 years ago)
Author:
Piotr Rozyczko <rozyczko@…>
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:
f4480f0
Parents:
cb4d219
Message:

More inversion work on details in validation, UI design and such

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/qtgui/Plotting/PlotterBase.py

    rdd150ef r8f83719f  
    145145    def xLabel(self, xlabel=""): 
    146146        """ x-label setter """ 
    147         self.x_label = r'$%s$'% xlabel 
     147        self.x_label = r'$%s$'% xlabel if xlabel else "" 
    148148 
    149149    @property 
     
    155155    def yLabel(self, ylabel=""): 
    156156        """ y-label setter """ 
    157         self.y_label = r'$%s$'% ylabel 
     157        self.y_label = r'$%s$'% ylabel if ylabel else "" 
    158158 
    159159    @property 
Note: See TracChangeset for help on using the changeset viewer.