DIALOG_ABOUT: fix incorrect size of bitmaps: it is now 24x24 pixels
Fixes https://gitlab.com/kicad/code/kicad/-/issues/6716
This commit is contained in:
parent
4be99d3d7d
commit
5d7a6ea990
|
@ -54,7 +54,7 @@ DIALOG_ABOUT::DIALOG_ABOUT( EDA_BASE_FRAME *aParent, ABOUT_APP_INFO& aAppInfo )
|
|||
wxASSERT( aParent != nullptr );
|
||||
|
||||
// TODO: Change these to 16x16 versions when available
|
||||
m_images = new wxImageList( 26, 26, false, 9 );
|
||||
m_images = new wxImageList( 24, 24, false, 9 );
|
||||
|
||||
m_images->Add( KiBitmap( info_xpm ) ); // INFORMATION
|
||||
m_images->Add( KiBitmap( recent_xpm ) ); // VERSION
|
||||
|
|
Loading…
Reference in New Issue