Skip to content

Commit

Permalink
Added static line under pref page title
Browse files Browse the repository at this point in the history
  • Loading branch information
blitzmann committed Mar 8, 2014
1 parent 513a02a commit e6bc831
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gui/builtinPreferenceViews/pyfaGlobalPreferences.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ def populatePanel( self, panel ):

mainSizer.Add( self.stTitle, 0, wx.ALL, 5 )

#self.m_staticline1 = wx.StaticLine( panel, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL )
#mainSizer.Add( self.m_staticline1, 0, wx.EXPAND, 5 )
self.m_staticline1 = wx.StaticLine( panel, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL )
mainSizer.Add( self.m_staticline1, 0, wx.EXPAND|wx.TOP|wx.BOTTOM, 5 )

self.cbGlobalChar = wx.CheckBox( panel, wx.ID_ANY, u"Use global character", wx.DefaultPosition, wx.DefaultSize, 0 )
mainSizer.Add( self.cbGlobalChar, 0, wx.ALL|wx.EXPAND, 5 )
Expand Down
3 changes: 3 additions & 0 deletions gui/builtinPreferenceViews/pyfaHTMLExportPreferences.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ def populatePanel( self, panel ):
self.stTitle.SetFont( wx.Font( 12, 70, 90, 90, False, wx.EmptyString ) )
mainSizer.Add( self.stTitle, 0, wx.ALL, 5 )

self.m_staticline1 = wx.StaticLine( panel, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL )
mainSizer.Add( self.m_staticline1, 0, wx.EXPAND|wx.TOP|wx.BOTTOM, 5 )

self.stDesc = wx.StaticText( panel, wx.ID_ANY, self.desc, wx.DefaultPosition, wx.DefaultSize, 0 )
self.stDesc.Wrap(dlgWidth - 50)
mainSizer.Add( self.stDesc, 0, wx.ALL, 5 )
Expand Down
3 changes: 3 additions & 0 deletions gui/builtinPreferenceViews/pyfaProxyPreferences.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ def populatePanel( self, panel ):

mainSizer.Add( self.stTitle, 0, wx.ALL, 5 )

self.m_staticline1 = wx.StaticLine( panel, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL )
mainSizer.Add( self.m_staticline1, 0, wx.EXPAND|wx.TOP|wx.BOTTOM, 5 )

ptypeSizer = wx.BoxSizer( wx.HORIZONTAL )

self.stPType = wx.StaticText( panel, wx.ID_ANY, u"Mode:", wx.DefaultPosition, wx.DefaultSize, 0 )
Expand Down
3 changes: 3 additions & 0 deletions gui/builtinPreferenceViews/pyfaUpdatePreferences.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ def populatePanel( self, panel ):
self.stTitle.SetFont( wx.Font( 12, 70, 90, 90, False, wx.EmptyString ) )
mainSizer.Add( self.stTitle, 0, wx.ALL, 5 )

self.m_staticline1 = wx.StaticLine( panel, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL )
mainSizer.Add( self.m_staticline1, 0, wx.EXPAND|wx.TOP|wx.BOTTOM, 5 )

self.stDesc = wx.StaticText( panel, wx.ID_ANY, self.desc, wx.DefaultPosition, wx.DefaultSize, 0 )
self.stDesc.Wrap(dlgWidth - 50)
mainSizer.Add( self.stDesc, 0, wx.ALL, 5 )
Expand Down

0 comments on commit e6bc831

Please sign in to comment.