Sophie

Sophie

distrib > Mageia > 9 > armv7hl > media > core-release-src > by-pkgid > e0aff4119c0d420b493d291c4762fc52 > files > 2

kicad-7.0.1-1.mga9.src.rpm

diff -up kicad-7.0.0/eeschema/sim/sim_plot_frame.cpp.wx kicad-7.0.0/eeschema/sim/sim_plot_frame.cpp
--- kicad-7.0.0/eeschema/sim/sim_plot_frame.cpp.wx	2023-02-11 17:03:39.000000000 +0100
+++ kicad-7.0.0/eeschema/sim/sim_plot_frame.cpp	2023-02-21 11:52:48.457062543 +0100
@@ -160,15 +160,15 @@ SIM_PLOT_FRAME::SIM_PLOT_FRAME( KIWAY* a
 
     // Toolbar buttons
     m_toolSimulate = m_toolBar->AddTool( ID_SIM_RUN, _( "Run/Stop Simulation" ),
-            KiBitmap( BITMAPS::sim_run ), _( "Run Simulation" ), wxITEM_NORMAL );
+            wxBitmapBundle( KiBitmap( BITMAPS::sim_run ) ), _( "Run Simulation" ), wxITEM_NORMAL );
     m_toolAddSignals = m_toolBar->AddTool( ID_SIM_ADD_SIGNALS, _( "Add Signals" ),
-            KiBitmap( BITMAPS::sim_add_signal ), _( "Add signals to plot" ), wxITEM_NORMAL );
+            wxBitmapBundle( KiBitmap( BITMAPS::sim_add_signal ) ), _( "Add signals to plot" ), wxITEM_NORMAL );
     m_toolProbe = m_toolBar->AddTool( ID_SIM_PROBE,  _( "Probe" ),
-            KiBitmap( BITMAPS::sim_probe ), _( "Probe signals on the schematic" ), wxITEM_NORMAL );
+            wxBitmapBundle( KiBitmap( BITMAPS::sim_probe ) ), _( "Probe signals on the schematic" ), wxITEM_NORMAL );
     m_toolTune = m_toolBar->AddTool( ID_SIM_TUNE, _( "Tune" ),
-            KiBitmap( BITMAPS::sim_tune ), _( "Tune component values" ), wxITEM_NORMAL );
+            wxBitmapBundle( KiBitmap( BITMAPS::sim_tune ) ), _( "Tune component values" ), wxITEM_NORMAL );
     m_toolSettings = m_toolBar->AddTool( wxID_ANY, _( "Sim Command" ),
-            KiBitmap( BITMAPS::config ), _( "Simulation command and settings" ), wxITEM_NORMAL );
+            wxBitmapBundle( KiBitmap( BITMAPS::config ) ), _( "Simulation command and settings" ), wxITEM_NORMAL );
 
     // Start all toolbar buttons except settings as disabled
     m_toolSimulate->Enable( false );