Commit 83eb6767 authored by David Fuhrmann's avatar David Fuhrmann

Revert "macosx: enable native fullscreen by default on mavericks"

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 72b60566.

Conflicts:
	modules/gui/macosx/macosx.m
parent f6944122
......@@ -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)
......
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