Commit 1d696bf6 authored by Dick Hollenbeck's avatar Dick Hollenbeck

PNG fixes

parent 65819977
...@@ -12,6 +12,8 @@ endif(WIN32) ...@@ -12,6 +12,8 @@ endif(WIN32)
# Path to local CMake modules. # Path to local CMake modules.
set(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/CMakeModules) set(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/CMakeModules)
option(USE_PNG_BITMAPS "use PNG bitmaps instead of XPM (default ON)" ON)
# Russian GOST patch # Russian GOST patch
option(wxUSE_UNICODE "enable/disable building unicode (default OFF)") option(wxUSE_UNICODE "enable/disable building unicode (default OFF)")
option(KICAD_GOST "enable/disable building using GOST notation for multiple gates per package (default OFF)") option(KICAD_GOST "enable/disable building using GOST notation for multiple gates per package (default OFF)")
......
...@@ -372,7 +372,7 @@ void SCH_EDIT_FRAME::ReCreateMenuBar() ...@@ -372,7 +372,7 @@ void SCH_EDIT_FRAME::ReCreateMenuBar()
// Graphic image // Graphic image
AddMenuItem( placeMenu, ID_ADD_IMAGE_BUTT, _("Image"), AddMenuItem( placeMenu, ID_ADD_IMAGE_BUTT, _("Image"),
HELP_PLACE_GRAPHICIMAGES, HELP_PLACE_GRAPHICIMAGES,
image_xpm ); KiBitmap( image_xpm ) );
// Menu Preferences: // Menu Preferences:
wxMenu* preferencesMenu = new wxMenu; wxMenu* preferencesMenu = new wxMenu;
......
...@@ -577,7 +577,7 @@ void PCB_EDIT_FRAME::ReCreateMenuBar() ...@@ -577,7 +577,7 @@ void PCB_EDIT_FRAME::ReCreateMenuBar()
AddMenuItem( configmenu, macrosMenu, AddMenuItem( configmenu, macrosMenu,
-1, _( "Macros" ), -1, _( "Macros" ),
_( "Macros save/read operations" ), _( "Macros save/read operations" ),
add_dimension_xpm ); KiBitmap( add_dimension_xpm ) );
configmenu->AppendSeparator(); configmenu->AppendSeparator();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment