Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Trenly
VLC
Commits
e568e69e
Commit
e568e69e
authored
11 years ago
by
David Fuhrmann
Browse files
Options
Downloads
Patches
Plain Diff
macosx: add workaround to avoid grey or transparent top bars in fullscreen mode
close #9469
parent
2477d7d0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/gui/macosx/Windows.m
+33
-0
33 additions, 0 deletions
modules/gui/macosx/Windows.m
with
33 additions
and
0 deletions
modules/gui/macosx/Windows.m
+
33
−
0
View file @
e568e69e
...
...
@@ -229,6 +229,39 @@
return
nil
;
}
-
(
NSRect
)
constrainFrameRect
:(
NSRect
)
frameRect
toScreen
:(
NSScreen
*
)
screen
{
if
(
!
screen
)
screen
=
[
self
screen
];
NSRect
screenRect
=
[
screen
frame
];
NSRect
constrainedRect
=
[
super
constrainFrameRect
:
frameRect
toScreen
:
screen
];
/*
* Ugly workaround!
* With Mavericks, there is a nasty bug resulting in grey bars on top in fullscreen mode.
* It looks like this is enforced by the os because the window is in the way for the menu bar.
*
* According to the documentation, this constraining can be changed by overwriting this
* method. But in this situation, even the received frameRect is already contrained with the
* menu bars height substracted. This case is detected here, and the full height is
* enforced again.
*
* See #9469 and radar://15583566
*/
BOOL
b_inFullscreen
=
[
self
fullscreen
]
||
([
self
respondsToSelector
:
@selector
(
inFullscreenTransition
)]
&&
[(
VLCVideoWindowCommon
*
)
self
inFullscreenTransition
]);
if
(
OSX_MAVERICKS
&&
b_inFullscreen
&&
constrainedRect
.
size
.
width
==
screenRect
.
size
.
width
&&
constrainedRect
.
size
.
height
!=
screenRect
.
size
.
height
&&
abs
(
screenRect
.
size
.
height
-
constrainedRect
.
size
.
height
)
<=
25
.)
{
msg_Dbg
(
VLCIntf
,
"Contrain window height %.1f to screen height %.1f"
,
constrainedRect
.
size
.
height
,
screenRect
.
size
.
height
);
constrainedRect
.
size
.
height
=
screenRect
.
size
.
height
;
}
return
constrainedRect
;
}
@end
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment