Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
5ff8299f
Commit
5ff8299f
authored
Mar 13, 2012
by
David Fuhrmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: disable native fullscreen checkbox only once
parent
d6d75822
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
6 deletions
+1
-6
modules/gui/macosx/simple_prefs.m
modules/gui/macosx/simple_prefs.m
+1
-6
No files found.
modules/gui/macosx/simple_prefs.m
View file @
5ff8299f
...
...
@@ -135,11 +135,6 @@ static VLCSimplePrefs *_o_sharedInstance = nil;
if
(
OSX_LION
)
[
o_sprefs_win
setCollectionBehavior
:
NSWindowCollectionBehaviorFullScreenAuxiliary
];
else
[
o_intf_nativefullscreen_ckb
setEnabled
:
NO
];
#ifndef MAC_OS_X_VERSION_10_7
[
o_intf_nativefullscreen_ckb
setEnabled
:
NO
];
#endif
[
o_hotkeys_listbox
setTarget
:
self
];
[
o_hotkeys_listbox
setDoubleAction
:
@selector
(
hotkeyTableDoubleClick
:)];
...
...
@@ -473,7 +468,7 @@ static inline char * __config_GetLabel( vlc_object_t *p_this, const char *psz_na
#ifdef MAC_OS_X_VERSION_10_7
b_correct_sdk
=
YES
;
#endif
if
(
!
b_correct_sdk
||
!
OSX_LION
)
if
(
!
(
b_correct_sdk
&&
OSX_LION
)
)
{
[
o_intf_nativefullscreen_ckb
setState
:
NSOffState
];
[
o_intf_nativefullscreen_ckb
setEnabled
:
NO
];
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment