Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
VideoLAN
VLC Browser Plugins
Commits
e60739a1
Commit
e60739a1
authored
Jan 29, 2014
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mac plugin: fix fullscreen vout alignment within firefox
parent
c389bd32
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
npapi/vlcplugin_mac.mm
npapi/vlcplugin_mac.mm
+1
-1
No files found.
npapi/vlcplugin_mac.mm
View file @
e60739a1
...
...
@@ -151,7 +151,7 @@ void VlcPluginMac::toggle_fullscreen()
if
(
!
fullscreenWindow
)
{
/* this window is kind of useless. however, we need to support 10.5, since enterFullScreenMode depends on the
* existance of a parent window. This is solved in 10.6 and we should remove the window once we require it. */
fullscreenWindow
=
[[
VLCFullscreenWindow
alloc
]
initWithContentRect
:
NSMakeRect
(
npwindow
.
x
,
npwindow
.
y
,
npwindow
.
width
,
npwindow
.
height
)];
fullscreenWindow
=
[[
VLCFullscreenWindow
alloc
]
initWithContentRect
:
NSMakeRect
(
0.
,
0.
,
npwindow
.
width
,
npwindow
.
height
)];
[
fullscreenWindow
setLevel
:
CGShieldingWindowLevel
()];
fullscreenView
=
[
fullscreenWindow
customContentView
];
...
...
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