mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-28 14:18:41 +02:00
No need to redisplay if already on screen...prevents flashing
This commit is contained in:
parent
3064f1715f
commit
7d88a693f4
@ -809,6 +809,11 @@ void LWSlider::ShowTip(bool show)
|
|||||||
{
|
{
|
||||||
if (mTipPanel)
|
if (mTipPanel)
|
||||||
{
|
{
|
||||||
|
if (mTipPanel->IsShownOnScreen())
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
delete mTipPanel;
|
delete mTipPanel;
|
||||||
mTipPanel = NULL;
|
mTipPanel = NULL;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user