Fix default size of library tables dialog on hidpi

This commit is contained in:
Marek Roszko 2024-02-04 15:53:15 -05:00
parent 19124b685e
commit 387084d8b3
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ void DIALOG_EDIT_LIBRARY_TABLES::InstallPanel( wxPanel* aPanel )
SetSizer( mainSizer );
mainSizer->Add( m_contentPanel, 1, wxEXPAND|wxLEFT|wxTOP|wxRIGHT, 5 );
m_contentPanel->SetMinSize( wxSize( 1000, 600 ) );
m_contentPanel->SetMinSize( FromDIP( wxSize( 1000, 600 ) ) );
auto sdbSizer = new wxStdDialogButtonSizer();
auto sdbSizerOK = new wxButton( this, wxID_OK );