Show tooltip near mouse position

This commit is contained in:
OmrSi 2020-10-27 17:11:01 +03:00
parent eeb66f31d5
commit fc9486c9b5

View File

@ -1742,7 +1742,8 @@ namespace Nikse.SubtitleEdit.Controls
{
toolTiptext = _chapters[index].Name;
}
_chapterToolTip.Show(toolTiptext, this, pos, Height - 65);
_chapterToolTip.Show(toolTiptext, _pictureBoxProgressbarBackground, e.X - 10, e.Y - 25);
break;
}
}
}
@ -1752,7 +1753,7 @@ namespace Nikse.SubtitleEdit.Controls
{
if (_chapters?.Count > 0)
{
_chapterToolTip.Hide(this);
_chapterToolTip.Hide(_pictureBoxProgressbarBackground);
}
}
@ -1782,7 +1783,8 @@ namespace Nikse.SubtitleEdit.Controls
{
toolTiptext = _chapters[index].Name;
}
_chapterToolTip.Show(toolTiptext, this, pos, Height - 65);
_chapterToolTip.Show(toolTiptext, _pictureBoxProgressBar, e.X - 10, e.Y - 25);
break;
}
}
}
@ -1792,7 +1794,7 @@ namespace Nikse.SubtitleEdit.Controls
{
if (_chapters?.Count > 0)
{
_chapterToolTip.Hide(this);
_chapterToolTip.Hide(_pictureBoxProgressBar);
}
}