1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-26 15:23:48 +01:00

Repaint resizer section of toolbar, if required, after an UpdatePrefs.

This commit is contained in:
James Crook
2017-04-27 19:36:52 +01:00
parent 51517fa631
commit c9183769d2
2 changed files with 3 additions and 2 deletions

View File

@@ -543,6 +543,9 @@ void ToolBar::UpdatePrefs()
if ( mResizer )
{
mResizer->SetToolTip( _("Click and drag to resize toolbar") );
wxSizeEvent e;
GetParent()->GetEventHandler()->AddPendingEvent( e );
GetParent()->Refresh();
}
#endif