Browse Source

DIALOG_ABOUT: fix incorrect size of bitmaps: it is now 24x24 pixels

Fixes https://gitlab.com/kicad/code/kicad/-/issues/6716
6.0.7
jean-pierre charras 5 years ago
parent
commit
5d7a6ea990
  1. 2
      common/dialog_about/dialog_about.cpp

2
common/dialog_about/dialog_about.cpp

@ -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…
Cancel
Save