From cdd461412ce48cb9bff155dc1d507b1939f93874 Mon Sep 17 00:00:00 2001 From: vspader Date: Mon, 12 Mar 2007 22:15:35 +0000 Subject: [PATCH] Forward delete now removed playlist entries. --- Playlist/PlaylistView.m | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Playlist/PlaylistView.m b/Playlist/PlaylistView.m index 931a80d7c..d047f7e24 100644 --- a/Playlist/PlaylistView.m +++ b/Playlist/PlaylistView.m @@ -128,7 +128,8 @@ return; c = [s characterAtIndex:0]; - if (c == NSDeleteCharacter) + + if (c == NSDeleteCharacter || c == NSBackspaceCharacter || c == NSDeleteFunctionKey) { [playlistController remove:self]; }