Ignore:
Timestamp:
Jan 12, 2012 11:10:18 AM (12 years ago)
Author:
Jae Cho <jhjcho@…>
Branches:
master, 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, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
Children:
6f140f2
Parents:
3a6c3b9
Message:

added tickmarker size changing with ticklabel size

File:
1 edited

Legend:

Unmodified
Added
Removed
  • plottools/src/danse/common/plottools/TextDialog.py

    r26b0a7c rf80236f  
    2424        self.SetWindowVariant(variant=FONT_VARIANT) 
    2525        # default 
    26         self.family = FAMILY[0] 
     26        self.family = FAMILY[1] 
    2727        self.size = SIZE[3] 
    2828        self.style = STYLE[0] 
    2929        self.weight = WEIGHT[1] 
    3030        self.color = COLOR[0] 
    31         self.tick_label = True 
     31        self.tick_label = False 
    3232        #Dialog interface 
    3333        vbox  = wx.BoxSizer(wx.VERTICAL) 
     
    5454            self.tick_label_check = wx.CheckBox(self, -1,  
    5555                                                '', (10, 10)) 
    56             self.tick_label_check.SetValue(True) 
     56            self.tick_label_check.SetValue(False) 
    5757            self.tick_label_check.SetToolTipString("Apply to tick label too.") 
    5858            wx.EVT_CHECKBOX(self, self.tick_label_check.GetId(),  
     
    8282        self.fontFamily.SetMinSize((_BOX_WIDTH, -1)) 
    8383        self._set_family_list() 
    84         self.fontFamily.SetSelection(0) 
     84        self.fontFamily.SetSelection(1) 
    8585        self.fontFamily.SetToolTipString("Font family of the text.") 
    8686        #font weight 
Note: See TracChangeset for help on using the changeset viewer.