Skip to content

Commit

Permalink
Minor dialog UI fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
qu1ck committed May 15, 2023
1 parent 3dc5f7d commit a31399a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions InteractiveHtmlBom/dialog/dialog_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def __init__( self, parent, id = wx.ID_ANY, pos = wx.DefaultPosition, size = wx.
highlightPin1Choices = [ u"None", u"All", u"Selected" ]
self.highlightPin1 = wx.RadioBox( self, wx.ID_ANY, u"Highlight first pin", wx.DefaultPosition, wx.DefaultSize, highlightPin1Choices, 3, wx.RA_SPECIFY_COLS )
self.highlightPin1.SetSelection( 0 )
b_sizer.Add( self.highlightPin1, 0, wx.ALL, 5 )
b_sizer.Add( self.highlightPin1, 0, wx.ALL|wx.EXPAND, 5 )

bSizer18 = wx.BoxSizer( wx.VERTICAL )

Expand Down Expand Up @@ -182,7 +182,7 @@ def __init__( self, parent, id = wx.ID_ANY, pos = wx.DefaultPosition, size = wx.
sbSizer10.Add( self.openBrowserCheckbox, 0, wx.ALL, 5 )


b_sizer.Add( sbSizer10, 1, wx.EXPAND, 5 )
b_sizer.Add( sbSizer10, 1, wx.EXPAND|wx.ALL, 5 )


self.SetSizer( b_sizer )
Expand Down
4 changes: 2 additions & 2 deletions settings_dialog.fbp
Original file line number Diff line number Diff line change
Expand Up @@ -739,7 +739,7 @@
</object>
<object class="sizeritem" expanded="1">
<property name="border">5</property>
<property name="flag">wxALL</property>
<property name="flag">wxALL|wxEXPAND</property>
<property name="proportion">0</property>
<object class="wxRadioBox" expanded="1">
<property name="BottomDockable">1</property>
Expand Down Expand Up @@ -1309,7 +1309,7 @@
</object>
<object class="sizeritem" expanded="1">
<property name="border">5</property>
<property name="flag">wxEXPAND</property>
<property name="flag">wxEXPAND|wxALL</property>
<property name="proportion">1</property>
<object class="wxStaticBoxSizer" expanded="1">
<property name="id">wxID_ANY</property>
Expand Down

0 comments on commit a31399a

Please sign in to comment.