Show tooltips below slider

This commit is contained in:
craig.p.drummond
2014-02-20 19:07:57 +00:00
parent 714bbf3a95
commit 5d88477a9e

View File

@@ -231,7 +231,7 @@ void PosSlider::mouseMoveEvent(QMouseEvent *e)
{
if (maximum()!=minimum()) {
qreal pc = (qreal)e->pos().x()/(qreal)width();
QPoint pos(e->pos().x(), Utils::isHighDpi() ? -80 : -40);
QPoint pos(e->pos().x(), height());
QToolTip::showText(mapToGlobal(pos), Song::formattedTime(maximum()*pc), this, rect());
}