From: Eric Petit Date: Thu, 19 Jun 2003 18:44:16 +0000 (+0000) Subject: beos/VideoOutput.cpp : fixed a visual bug in fullscreen that happens with X-Git-Tag: 0.6.0~42 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=81e494209d2cac6f438d8bc79e7e3b4ce4ea4cef;p=vlc beos/VideoOutput.cpp : fixed a visual bug in fullscreen that happens with a few Dano/Zeta themes --- diff --git a/modules/gui/beos/VideoOutput.cpp b/modules/gui/beos/VideoOutput.cpp index bcdbfbb75b..e2f361b16f 100644 --- a/modules/gui/beos/VideoOutput.cpp +++ b/modules/gui/beos/VideoOutput.cpp @@ -2,7 +2,7 @@ * vout_beos.cpp: beos video output display method ***************************************************************************** * Copyright (C) 2000, 2001 VideoLAN - * $Id: VideoOutput.cpp,v 1.21 2003/06/14 12:32:16 titer Exp $ + * $Id: VideoOutput.cpp,v 1.22 2003/06/19 18:44:16 titer Exp $ * * Authors: Jean-Marc Dressler * Samuel Hocevar @@ -604,6 +604,7 @@ VideoWindow::SetFullScreen(bool doIt) { if (doIt) { + SetLook( B_NO_BORDER_WINDOW_LOOK ); BScreen screen(this); BRect rect = screen.Frame(); Activate(); @@ -615,6 +616,7 @@ VideoWindow::SetFullScreen(bool doIt) } else { + SetLook( B_TITLED_WINDOW_LOOK ); MoveTo(winSize.left, winSize.top); ResizeTo(winSize.IntegerWidth(), winSize.IntegerHeight()); be_app->ShowCursor();