]> git.sesse.net Git - vlc/commitdiff
Revert "macosx: enable native fullscreen by default on mavericks"
authorDavid Fuhrmann <dfuhrmann@videolan.org>
Thu, 29 May 2014 15:13:21 +0000 (17:13 +0200)
committerDavid Fuhrmann <dfuhrmann@videolan.org>
Sun, 1 Jun 2014 09:29:12 +0000 (11:29 +0200)
They are several complaints for nonworking functionality with this
mode, because not every option combination is supported yet.

Additionally, the initial reason for this commit, namely grey
bars in fullscreen, is fixed by a workaround for 2.2.

This reverts commit 72b60566a25ca24cb4cf54d394a8275bee5cc9e8.

Conflicts:
modules/gui/macosx/macosx.m

modules/gui/macosx/macosx.m

index b0f99cc29e4144482da76071d8aaba473e0353f9..73f308fc7e9153dc9da85426c4c7c754335f643f 100644 (file)
@@ -35,8 +35,6 @@
 #include <vlc_plugin.h>
 #include <vlc_vout_window.h>
 
-#include "CompatibilityFixes.h"
-
 /*****************************************************************************
  * External prototypes
  *****************************************************************************/
@@ -151,11 +149,9 @@ vlc_module_begin()
     set_subcategory(SUBCAT_INTERFACE_MAIN)
     cannot_unload_broken_library()
 
-    BOOL b_have_mavericks = OSX_MAVERICKS;
-
     set_section(N_("Appearance"), 0)
         add_bool("macosx-interfacestyle", false, INTERFACE_STYLE_TEXT, INTERFACE_STYLE_LONGTEXT, false)
-        add_bool("macosx-nativefullscreenmode", b_have_mavericks, NATIVE_FULLSCREEN_MODE_ON_LION_TEXT, NATIVE_FULLSCREEN_MODE_ON_LION_LONGTEXT, false)
+        add_bool("macosx-nativefullscreenmode", false, NATIVE_FULLSCREEN_MODE_ON_LION_TEXT, NATIVE_FULLSCREEN_MODE_ON_LION_LONGTEXT, false)
         add_bool("macosx-icon-change", true, ICONCHANGE_TEXT, ICONCHANGE_LONGTEXT, true)
         add_bool("macosx-show-playback-buttons", false, JUMPBUTTONS_TEXT, JUMPBUTTONS_LONGTEXT, false)
         add_bool("macosx-show-playmode-buttons", false, PLAYMODEBUTTONS_TEXT, PLAYMODEBUTTONS_LONGTEXT, false)