mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-14 02:03:12 +02:00
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:
parent
fe06e13091
commit
151b1141f7
@ -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 );
|
||||
|
||||
|
@ -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>
|
||||
|
Loading…
x
Reference in New Issue
Block a user