1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-04 17:49:45 +02:00

No need to redisplay if already on screen...prevents flashing

This commit is contained in:
Leland Lucius 2015-08-09 06:15:08 -05:00
parent 3064f1715f
commit 7d88a693f4

View File

@ -809,6 +809,11 @@ void LWSlider::ShowTip(bool show)
{
if (mTipPanel)
{
if (mTipPanel->IsShownOnScreen())
{
return;
}
delete mTipPanel;
mTipPanel = NULL;
}