Skip to content

Commit

Permalink
fix2 for multimedia keys
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott Horowitz committed Sep 18, 2006
1 parent e76dba7 commit a2521b1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
v0.6 - Pending
+ Add support for playlists (save, load, queue, delete)
+ Ability to use local image for album cover
+ Add Ctrl-U and Ctrl-Shift-U for updating library (see docs)
+ Support for multimedia keys
+ Fetch cover art if an artist, but not album, is specified
+ Add Ctrl-U and Ctrl-Shift-U for updating library (see docs)
+ (Re-)display systray icon if tray is (re-)opened
+ Fix mpdclient3.py to return all playlist objects
+ Bug: Delete key doesn't remove songs from playlist
Expand Down
10 changes: 5 additions & 5 deletions sonata.py
Original file line number Diff line number Diff line change
Expand Up @@ -564,11 +564,11 @@ def __init__(self):
self.window.connect('button_press_event', self.popup_menu)

# Connect to mmkeys signals
keys = mmkeys.MmKeys()
keys.connect("mm_prev", self.mmprev)
keys.connect("mm_next", self.mmnext)
keys.connect("mm_playpause", self.mmpp)
keys.connect("mm_stop", self.mmstop)
self.keys = mmkeys.MmKeys()
self.keys.connect("mm_prev", self.mmprev)
self.keys.connect("mm_next", self.mmnext)
self.keys.connect("mm_playpause", self.mmpp)
self.keys.connect("mm_stop", self.mmstop)

# Put blank cd to albumimage widget by default
blankalbum = 'sonatacd.png'
Expand Down

0 comments on commit a2521b1

Please sign in to comment.