Commit 019bcc34 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt: try to fix hangout on win32

parent 7206e0cd
...@@ -1131,9 +1131,9 @@ void MainInterface::closeEvent( QCloseEvent *e ) ...@@ -1131,9 +1131,9 @@ void MainInterface::closeEvent( QCloseEvent *e )
void MainInterface::setInterfaceFullScreen( bool fs ) void MainInterface::setInterfaceFullScreen( bool fs )
{ {
if( fs ) if( fs )
showFullScreen(); setWindowState( windowState() | Qt::WindowFullScreen );
else else
showNormal(); setWindowState( windowState() & ~Qt::WindowFullScreen );
} }
void MainInterface::toggleInterfaceFullScreen() void MainInterface::toggleInterfaceFullScreen()
{ {
......
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