From: David Fuhrmann Date: Thu, 20 Jun 2013 18:55:54 +0000 (+0200) Subject: macosx: update condition for idle fullscreen button state X-Git-Tag: 2.1.0-git~76 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=370d8f5d1e3dae23d5805dbefb75ac918d216585;p=vlc macosx: update condition for idle fullscreen button state --- diff --git a/modules/gui/macosx/MainWindow.m b/modules/gui/macosx/MainWindow.m index e96b6adc83..259589a2cc 100644 --- a/modules/gui/macosx/MainWindow.m +++ b/modules/gui/macosx/MainWindow.m @@ -749,7 +749,7 @@ static VLCMainWindow *_o_sharedInstance = nil; [[self animator] setFrame:frameBeforePlayback display:YES]; // update fs button to reflect state for next startup - if (var_InheritBool(pl_Get(VLCIntf), "fullscreen")) { + if (var_InheritBool(VLCIntf, "fullscreen") || var_GetBool(pl_Get(VLCIntf), "fullscreen")) { [o_controls_bar setFullscreenState:YES]; }