Changeset 6bd699ccb73854547565af9af5ec21a307c00056

Show
Ignore:
Timestamp:
22/08/08 04:21:31 (3 months ago)
Author:
Jean-Baptiste Kempf <jb@videolan.org>
git-committer:
Jean-Baptiste Kempf <jb@videolan.org> 1219371691 +0200
git-parent:

[5ea03a66ee4c567be50b28c84982b49b3c9e6d90]

git-author:
Jean-Baptiste Kempf <jb@videolan.org> 1219371691 +0200
Message:

Fix #1884

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/gui/qt4/main_interface.cpp

    r165268c r6bd699c  
    814814    /* HACK for minimalView, see menus.cpp */ 
    815815    if( !menuBar()->isVisible() ) QVLCMenu::minimalViewAction->toggle(); 
     816 
    816817    if( i_visualmode != QT_ALWAYS_VIDEO_MODE && 
    817818        i_visualmode != QT_MINIMAL_MODE ) 
    818     { 
     819    { /* NORMAL MODE then */ 
    819820        if( videoWidget->isHidden() ) emit askBgWidgetToToggle(); 
     821        else 
     822        { 
     823            /* If video is visible, then toggle the status of bgWidget */ 
     824            bgWasVisible = !bgWasVisible;        
     825        } 
    820826    } 
    821827