mirror of
https://github.com/cookiengineer/audacity
synced 2025-12-20 15:41:18 +01:00
No need to redisplay if already on screen...prevents flashing
This commit is contained in:
@@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user