Skip to content

Commit

Permalink
update gui
Browse files Browse the repository at this point in the history
  • Loading branch information
nachifur committed Aug 24, 2024
1 parent ac8886e commit e381537
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/mulimgviewer/gui/main_gui.fbp
Original file line number Diff line number Diff line change
Expand Up @@ -5462,7 +5462,7 @@
<property name="permission">none</property>
<object class="sizeritem" expanded="true">
<property name="border">5</property>
<property name="flag">wxALL</property>
<property name="flag">wxALL|wxALIGN_CENTER_VERTICAL</property>
<property name="proportion">0</property>
<object class="wxStaticText" expanded="true">
<property name="BottomDockable">1</property>
Expand Down Expand Up @@ -5511,7 +5511,7 @@
<property name="pos"></property>
<property name="resize">Resizable</property>
<property name="show">1</property>
<property name="size">100,-1</property>
<property name="size">-1,-1</property>
<property name="style"></property>
<property name="subclass">; ; forward_declare</property>
<property name="toolbar_pane">0</property>
Expand All @@ -5524,7 +5524,7 @@
</object>
<object class="sizeritem" expanded="true">
<property name="border">5</property>
<property name="flag">wxALL</property>
<property name="flag">wxALL|wxALIGN_CENTER_VERTICAL</property>
<property name="proportion">0</property>
<object class="wxChoice" expanded="true">
<property name="BottomDockable">1</property>
Expand Down
6 changes: 3 additions & 3 deletions src/mulimgviewer/gui/main_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -445,15 +445,15 @@ def __init__( self, parent ):

wSizer111 = wx.WrapSizer( wx.HORIZONTAL, wx.WRAPSIZER_DEFAULT_FLAGS )

self.m_staticText36 = wx.StaticText( self.m_panel4, wx.ID_ANY, u"🔍️Typed", wx.DefaultPosition, wx.Size( 100,-1 ), 0 )
self.m_staticText36 = wx.StaticText( self.m_panel4, wx.ID_ANY, u"🔍️Typed", wx.DefaultPosition, wx.Size( -1,-1 ), 0 )
self.m_staticText36.Wrap( -1 )

wSizer111.Add( self.m_staticText36, 0, wx.ALL, 5 )
wSizer111.Add( self.m_staticText36, 0, wx.ALL|wx.ALIGN_CENTER_VERTICAL, 5 )

Magnifier_formatChoices = [ u"equal length width", u"equal width", u"equal height " ]
self.Magnifier_format = wx.Choice( self.m_panel4, wx.ID_ANY, wx.Point( -1,-1 ), wx.DefaultSize, Magnifier_formatChoices, 0 )
self.Magnifier_format.SetSelection( 1 )
wSizer111.Add( self.Magnifier_format, 0, wx.ALL, 5 )
wSizer111.Add( self.Magnifier_format, 0, wx.ALL|wx.ALIGN_CENTER_VERTICAL, 5 )


fgSizer3.Add( wSizer111, 1, wx.EXPAND, 5 )
Expand Down

0 comments on commit e381537

Please sign in to comment.