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
345e94f1
Commit
345e94f1
authored
Apr 30, 2011
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: fixed Reveal-in-Finder when path contains spaces or umlauts
closes #4721
parent
5aa83bf4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
6 deletions
+3
-6
modules/gui/macosx/playlist.m
modules/gui/macosx/playlist.m
+3
-6
No files found.
modules/gui/macosx/playlist.m
View file @
345e94f1
...
...
@@ -891,7 +891,7 @@
if
(
!
p_item
||
!
p_item
->
p_input
)
return
;
char
*
psz_uri
=
input_item_GetURI
(
p_item
->
p_input
);
char
*
psz_uri
=
decode_URI
(
input_item_GetURI
(
p_item
->
p_input
)
);
if
(
psz_uri
)
o_mrl
=
[
NSMutableString
stringWithUTF8String
:
psz_uri
];
...
...
@@ -1586,11 +1586,8 @@
/* Refuse to move items that are not in the General Node
(Service Discovery) */
if
(
!
[
self
isItem
:
[
o_item
pointerValue
]
inNode
:
p_playlist
->
p_local_category
checkItemExistence
:
NO
]
&&
var_CreateGetBool
(
p_playlist
,
"media-library"
)
&&
!
[
self
isItem
:
[
o_item
pointerValue
]
inNode
:
p_playlist
->
p_ml_category
checkItemExistence
:
NO
]
||
if
(
(
!
[
self
isItem
:
[
o_item
pointerValue
]
inNode
:
p_playlist
->
p_local_category
checkItemExistence
:
NO
]
&&
var_CreateGetBool
(
p_playlist
,
"media-library"
)
&&
!
[
self
isItem
:
[
o_item
pointerValue
]
inNode
:
p_playlist
->
p_ml_category
checkItemExistence
:
NO
])
||
[
o_item
pointerValue
]
==
p_playlist
->
p_local_category
||
[
o_item
pointerValue
]
==
p_playlist
->
p_ml_category
)
{
...
...
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