Delete selected song from Playlist.
Now, Pressing d deletes the selected song.
This commit is contained in:
parent
0dca038dbb
commit
af9b9a1c0a
20
main.go
20
main.go
@ -173,11 +173,29 @@ func main() {
|
|||||||
UI.App.Stop()
|
UI.App.Stop()
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
case 115:
|
case 115: // s: key
|
||||||
{
|
{
|
||||||
conn.Stop()
|
conn.Stop()
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
case 117: // u : key
|
||||||
|
{
|
||||||
|
_, err = conn.Update("")
|
||||||
|
if err != nil {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
case 100: // d : key
|
||||||
|
{
|
||||||
|
if InsidePlaylist {
|
||||||
|
r, _ := UI.expandedView.GetSelection()
|
||||||
|
conn.Delete(r, -1)
|
||||||
|
return nil
|
||||||
|
} else {
|
||||||
|
return e
|
||||||
|
}
|
||||||
|
}
|
||||||
default:
|
default:
|
||||||
{
|
{
|
||||||
return e
|
return e
|
||||||
|
Loading…
Reference in New Issue
Block a user