Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
b851c88a
Commit
b851c88a
authored
Nov 07, 2004
by
zorglub
Browse files
Fix item delete in skins
parent
a9c28361
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/gui/skins2/vars/playlist.cpp
View file @
b851c88a
...
...
@@ -64,7 +64,9 @@ void Playlist::delSelected()
{
if
(
(
*
it
).
m_selected
)
{
playlist_Delete
(
m_pPlaylist
,
index
);
playlist_item_t
*
p_item
=
playlist_ItemGetByPos
(
m_pPlaylist
,
index
);
playlist_Delete
(
m_pPlaylist
,
p_item
->
input
.
i_id
);
}
else
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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