The remove button in the playlist window emits 'playlist_item.remove' now.
authorTilman Sauerbeck <tilman@code-monkey.de>
Sat, 28 May 2005 20:11:03 +0000 (20:11 +0000)
committerTilman Sauerbeck <tilman@code-monkey.de>
Sat, 28 May 2005 20:11:03 +0000 (20:11 +0000)
src/playlist-buttons.rb

index 548f2763b89fe7cf4f4681792678cdd72f5a2532..2639cce5da48faf2daeb81e4e1687795bde3f5f5 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: playlist-buttons.rb 22 2005-05-07 16:16:28Z tilman $
+# $Id: playlist-buttons.rb 24 2005-05-28 20:11:03Z tilman $
 
 c = EDJE.collection("playlist")
 root = c.part("root")
@@ -30,7 +30,7 @@ buttons.clear
 root = c.part("playlist.background.footer.left")
 
 h = {"playlist.button.add" => ["file_dialog.open", [5, 5]],
-     "playlist.button.rem" => [nil, [35, 5]],
+     "playlist.button.rem" => ["playlist_item.remove", [35, 5]],
      "playlist.button.sel" => [nil, [65, 5]],
      "playlist.button.misc" => [nil, [95, 5]]}
 h.each do |name, (sig, (x, y))|