Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
f82f77ba
Commit
f82f77ba
authored
Jan 01, 2016
by
David Fuhrmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: cosmetics
parent
bffe61d5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
4 deletions
+3
-4
modules/gui/macosx/VideoView.m
modules/gui/macosx/VideoView.m
+1
-2
modules/gui/macosx/misc.m
modules/gui/macosx/misc.m
+2
-2
No files found.
modules/gui/macosx/VideoView.m
View file @
f82f77ba
...
...
@@ -122,8 +122,7 @@
-
(
BOOL
)
performDragOperation
:(
id
<
NSDraggingInfo
>
)
sender
{
BOOL
b_returned
;
b_returned
=
[[
VLCCoreInteraction
sharedInstance
]
performDragOperation
:
sender
];
BOOL
b_returned
=
[[
VLCCoreInteraction
sharedInstance
]
performDragOperation
:
sender
];
[
self
setNeedsDisplay
:
YES
];
return
b_returned
;
...
...
modules/gui/macosx/misc.m
View file @
f82f77ba
...
...
@@ -388,9 +388,9 @@ static bool b_old_spaces_style = YES;
BOOL
b_returned
;
if
(
_dropHandler
&&
[
_dropHandler
respondsToSelector
:
@selector
(
performDragOperation
:)])
b_returned
=
[
_dropHandler
performDragOperation
:
sender
];
b_returned
=
[
_dropHandler
performDragOperation
:
sender
];
else
// default
b_returned
=
[[
VLCCoreInteraction
sharedInstance
]
performDragOperation
:
sender
];
b_returned
=
[[
VLCCoreInteraction
sharedInstance
]
performDragOperation
:
sender
];
[
self
setNeedsDisplay
:
YES
];
return
b_returned
;
...
...
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