Forward delete now removed playlist entries.

CQTexperiment
vspader 2007-03-12 22:15:35 +00:00
parent 91607ea9ce
commit cdd461412c
1 changed files with 2 additions and 1 deletions

View File

@ -128,7 +128,8 @@
return;
c = [s characterAtIndex:0];
if (c == NSDeleteCharacter)
if (c == NSDeleteCharacter || c == NSBackspaceCharacter || c == NSDeleteFunctionKey)
{
[playlistController remove:self];
}