Replace missing growable-row spec.
Fixes: lp:1783545 * https://bugs.launchpad.net/kicad/+bug/1783545
This commit is contained in:
parent
f01cf15528
commit
05b2060e12
|
@ -18,6 +18,7 @@ DIALOG_LABEL_EDITOR_BASE::DIALOG_LABEL_EDITOR_BASE( wxWindow* parent, wxWindowID
|
||||||
|
|
||||||
m_textEntrySizer = new wxFlexGridSizer( 4, 2, 3, 3 );
|
m_textEntrySizer = new wxFlexGridSizer( 4, 2, 3, 3 );
|
||||||
m_textEntrySizer->AddGrowableCol( 1 );
|
m_textEntrySizer->AddGrowableCol( 1 );
|
||||||
|
m_textEntrySizer->AddGrowableRow( 1 );
|
||||||
m_textEntrySizer->SetFlexibleDirection( wxBOTH );
|
m_textEntrySizer->SetFlexibleDirection( wxBOTH );
|
||||||
m_textEntrySizer->SetNonFlexibleGrowMode( wxFLEX_GROWMODE_SPECIFIED );
|
m_textEntrySizer->SetNonFlexibleGrowMode( wxFLEX_GROWMODE_SPECIFIED );
|
||||||
|
|
||||||
|
|
|
@ -101,7 +101,7 @@
|
||||||
<property name="cols">2</property>
|
<property name="cols">2</property>
|
||||||
<property name="flexible_direction">wxBOTH</property>
|
<property name="flexible_direction">wxBOTH</property>
|
||||||
<property name="growablecols">1</property>
|
<property name="growablecols">1</property>
|
||||||
<property name="growablerows"></property>
|
<property name="growablerows">1</property>
|
||||||
<property name="hgap">3</property>
|
<property name="hgap">3</property>
|
||||||
<property name="minimum_size"></property>
|
<property name="minimum_size"></property>
|
||||||
<property name="name">m_textEntrySizer</property>
|
<property name="name">m_textEntrySizer</property>
|
||||||
|
|
Loading…
Reference in New Issue