Disable AuiBar fix until dark icon support is ready
This commit is contained in:
parent
f6064523a3
commit
17bcbdbf56
|
@ -170,10 +170,14 @@ ACTION_TOOLBAR::ACTION_TOOLBAR( EDA_BASE_FRAME* parent, wxWindowID id, const wxP
|
|||
{
|
||||
m_paletteTimer = new wxTimer( this );
|
||||
|
||||
// Enable this once dark icon switching is available. Without dark theme icons, this just
|
||||
// makes things (even) harder to see
|
||||
#ifdef NOTYET
|
||||
#if !wxCHECK_VERSION( 3, 1, 0 )
|
||||
// Custom art provider makes dark mode work on wx < 3.1
|
||||
AUI_ART_PROVIDER* newArt = new AUI_ART_PROVIDER();
|
||||
SetArtProvider( newArt );
|
||||
#endif
|
||||
#endif
|
||||
|
||||
Connect( wxEVT_COMMAND_TOOL_CLICKED, wxAuiToolBarEventHandler( ACTION_TOOLBAR::onToolEvent ),
|
||||
|
|
Loading…
Reference in New Issue