Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
5ce30b7c
Commit
5ce30b7c
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
c5c07d26
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
7 deletions
+4
-7
modules/gui/macosx/playlist.m
modules/gui/macosx/playlist.m
+4
-7
No files found.
modules/gui/macosx/playlist.m
View file @
5ce30b7c
...
...
@@ -706,7 +706,7 @@
inNode
:
(
playlist_item_t
*
)
p_node
checkItemExistence
:(
BOOL
)
b_check
{
[
self
isItem
:
p_item
inNode
:
p_node
checkItemExistence
:
b_check
locked
:
NO
];
return
[
self
isItem
:
p_item
inNode
:
p_node
checkItemExistence
:
b_check
locked
:
NO
];
}
/* This method is useful for instance to remove the selected children of an
...
...
@@ -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