Increase minimum HTML panel height of the template selection dialog.

wxFormbuilder is not DPI aware so the previous height was a bit short on
high DPI displays.  The new height is a compromise which will be a bit tall
on standard DPI displays and a bit short on high DPI displays.
This commit is contained in:
Wayne Stambaugh 2024-12-31 17:27:26 -05:00
parent fe06e13091
commit 151b1141f7
2 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ DIALOG_TEMPLATE_SELECTOR_BASE::DIALOG_TEMPLATE_SELECTOR_BASE( wxWindow* parent,
bmainSizer->Add( m_notebook, 0, wxBOTTOM|wxEXPAND|wxLEFT|wxRIGHT, 5 );
m_htmlWin = new HTML_WINDOW( this, wxID_ANY, wxDefaultPosition, wxSize( -1,-1 ), wxHW_SCROLLBAR_AUTO );
m_htmlWin->SetMinSize( wxSize( 400,175 ) );
m_htmlWin->SetMinSize( wxSize( 400,200 ) );
bmainSizer->Add( m_htmlWin, 1, wxBOTTOM|wxEXPAND|wxLEFT|wxRIGHT, 5 );

View File

@ -451,7 +451,7 @@
<property name="maximum_size"></property>
<property name="min_size"></property>
<property name="minimize_button">0</property>
<property name="minimum_size">400,175</property>
<property name="minimum_size">400,200</property>
<property name="moveable">1</property>
<property name="name">m_htmlWin</property>
<property name="pane_border">1</property>