Skip to content

Commit

Permalink
fix bold titles if song changes with filterbar visible
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott Horowitz authored and bebarino committed Sep 21, 2009
1 parent 6345e9d commit 86649eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG
Expand Up @@ -3,9 +3,10 @@ v1.5.2 - Pending
+ Add Turkish translation (Gökmen)
+ Bug: Fix artwork for files with unicode characters
+ Bug: Fix crash if mpd library is empty
+ Bug: Fix regression where dbus-python became required
+ Bug: Fix artwork display in song notification window for RTL languages
+ Bug: Fix progressbar seeking for RTL languages
+ Bug: Fix regression where dbus-python became required
+ Bug: Bold titles lose sync if song changes with visible filterbar
+ Bug: No play/pause indicator in systray icon if started while mpd is active

v1.5.1 - May 3, 2008
Expand Down
4 changes: 0 additions & 4 deletions sonata/main.py
Expand Up @@ -3671,8 +3671,6 @@ def scrobbler_retrieve_cache(self):
self.scrob_post.retrievecache(filename)

def boldrow(self, row):
if self.filterbox_visible:
return
if row > -1:
try:
for i in range(len(self.currentdata[row]) - 1):
Expand All @@ -3681,8 +3679,6 @@ def boldrow(self, row):
pass

def unbold_boldrow(self, row):
if self.filterbox_visible:
return
if row > -1:
try:
for i in range(len(self.currentdata[row]) - 1):
Expand Down

0 comments on commit 86649eb

Please sign in to comment.