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
Steve Lhomme
VLC
Commits
bc404d17
Commit
bc404d17
authored
Jan 08, 2018
by
Marvin Scholz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: fix minimizability of dark style Window
Fix #19416
parent
bc0f4098
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
modules/gui/macosx/Windows.m
modules/gui/macosx/Windows.m
+1
-1
No files found.
modules/gui/macosx/Windows.m
View file @
bc404d17
...
...
@@ -234,7 +234,7 @@
_darkInterface
=
config_GetInt
(
getIntf
(),
"macosx-interfacestyle"
);
if
(
_darkInterface
)
{
styleMask
=
NSBorderlessWindowMask
|
NSResizableWindowMask
;
styleMask
=
NSBorderlessWindowMask
|
NSResizableWindowMask
|
NSMiniaturizableWindowMask
;
}
self
=
[
super
initWithContentRect
:
contentRect
styleMask
:
styleMask
...
...
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