Commit ef37f508 authored by Michael Carpenter's avatar Michael Carpenter

Fix for incorrectly positioned tooltips on QGCToolWidgetItems

parent 5e03573c
......@@ -78,7 +78,7 @@ void QGCComboBox::showTooltip()
if (sender)
{
QPoint point = mapToGlobal(pos());
QPoint point = mapToGlobal(ui->infoLabel->pos());
QToolTip::showText(point, sender->toolTip());
}
}
......
......@@ -73,7 +73,7 @@ void QGCParamSlider::showTooltip()
if (sender)
{
QPoint point = mapToGlobal(pos());
QPoint point = mapToGlobal(ui->infoLabel->pos());
QToolTip::showText(point, sender->toolTip());
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment