1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-12 15:11:09 +02:00

Set colour of docking indicator (was blue).

This commit is contained in:
James Crook 2016-08-17 16:29:54 +01:00
parent b743f1d5b6
commit 2ea315e185

View File

@ -1276,7 +1276,8 @@ void ToolManager::OnIndicatorPaint( wxPaintEvent & event )
{
wxWindow *w = (wxWindow *)event.GetEventObject();
wxPaintDC dc( w );
dc.SetBackground( *wxBLUE_BRUSH );
wxBrush brush( theTheme.Colour( clrTrackPanelText ) );
dc.SetBackground( brush );
dc.Clear();
}