Commit 985a8c9e authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Revert "Added Qt::Tool flag on the fullscreen widget."

This reverts commit a9175056.
parent a736053c
...@@ -197,12 +197,12 @@ void VideoWidget::SetFullScreen( bool b_fs ) ...@@ -197,12 +197,12 @@ void VideoWidget::SetFullScreen( bool b_fs )
if( b_fs ) if( b_fs )
{ {
newstate |= Qt::WindowFullScreen; newstate |= Qt::WindowFullScreen;
newflags |= Qt::WindowStaysOnTopHint | Qt::Tool; newflags |= Qt::WindowStaysOnTopHint;
} }
else else
{ {
newstate &= ~Qt::WindowFullScreen; newstate &= ~Qt::WindowFullScreen;
newflags &= ~(Qt::WindowStaysOnTopHint | Qt::Tool); newflags &= ~Qt::WindowStaysOnTopHint;
} }
if( newstate == curstate ) if( newstate == curstate )
return; /* no changes needed */ return; /* no changes needed */
......
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