From cc43b66daf37cc49970e7a2d5b676dc8626af253 Mon Sep 17 00:00:00 2001 From: Michael Kavanagh Date: Sun, 13 Dec 2020 14:29:50 +0000 Subject: [PATCH] Icons: use correct size for open action in toolbar Previously 16x16 was used --- common/tool/actions.cpp | 2 +- pcbnew/menubar_pcb_editor.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/common/tool/actions.cpp b/common/tool/actions.cpp index a37d026e39..3b743c7675 100644 --- a/common/tool/actions.cpp +++ b/common/tool/actions.cpp @@ -57,7 +57,7 @@ TOOL_ACTION ACTIONS::open( "common.Control.open", AS_GLOBAL, MD_CTRL + 'O', LEGACY_HK_NAME( "Open" ), _( "Open..." ), _( "Open existing document" ), - folder_xpm ); + directory_open_xpm ); TOOL_ACTION ACTIONS::save( "common.Control.save", AS_GLOBAL, diff --git a/pcbnew/menubar_pcb_editor.cpp b/pcbnew/menubar_pcb_editor.cpp index 3c1540b62e..cec167537e 100644 --- a/pcbnew/menubar_pcb_editor.cpp +++ b/pcbnew/menubar_pcb_editor.cpp @@ -412,12 +412,12 @@ void PCB_EDIT_FRAME::ReCreateMenuBar() submenuActionPlugins->Add( _( "Reveal Plugin Folder in Finder" ), _( "Reveals the plugins folder in a Finder window" ), ID_TOOLBARH_PCB_ACTION_PLUGIN_SHOW_FOLDER, - folder_xpm ); + directory_open_xmp ); #else submenuActionPlugins->Add( _( "Open Plugin Directory" ), _( "Opens the directory in the default system file manager" ), ID_TOOLBARH_PCB_ACTION_PLUGIN_SHOW_FOLDER, - folder_xpm ); + directory_open_xmp ); #endif // Populate the Action Plugin sub-menu: Must be done before Add // Since the object is cloned by Add