diff --git a/modules/gui/qt4/util/timetooltip.cpp b/modules/gui/qt4/util/timetooltip.cpp index bf6eb875359c71da0d788c77947745646d3752fd..cf93969bc43d580d0c49af576c39de6a1a095b1b 100644 --- a/modules/gui/qt4/util/timetooltip.cpp +++ b/modules/gui/qt4/util/timetooltip.cpp @@ -142,6 +142,13 @@ void TimeTooltip::setTip( const QPoint& target, const QString& time, const QStri void TimeTooltip::show() { QWidget::setVisible( mInitialized ); +#ifdef Q_WS_PM + // Bring a tooltip on the top + // Without this, tooltip does not appear on fullscreen + // from the second fullscreen state change + if( mInitialized ) + QWidget::raise(); +#endif } void TimeTooltip::paintEvent( QPaintEvent * )