summaryrefslogtreecommitdiff
path: root/gtkplaylist.c
diff options
context:
space:
mode:
authorGravatar waker <wakeroid@gmail.com>2009-08-18 20:43:52 +0200
committerGravatar waker <wakeroid@gmail.com>2009-08-18 20:43:52 +0200
commit97ef791009c961212c64729c29a47f1e6e0ac8d7 (patch)
treefd7b2d134648f347f84991754e46ece255a0df87 /gtkplaylist.c
parent42c05923e9fe4f92c4dc7db636d1b871bdba0674 (diff)
fixed redraw of current song on songchange
Diffstat (limited to 'gtkplaylist.c')
-rw-r--r--gtkplaylist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtkplaylist.c b/gtkplaylist.c
index 4f55cbc2..e485180e 100644
--- a/gtkplaylist.c
+++ b/gtkplaylist.c
@@ -310,7 +310,7 @@ gtkpl_draw_pl_row (gtkplaylist_t *ps, cairo_t *cr, int row, playItem_t *it) {
}
int width, height;
gdk_drawable_get_size (ps->backbuf, &width, &height);
- if (it == playlist_current_ptr && ps->colwidths[0] > 0 && !p_isstopped ()) {
+ if (it == playlist_current_ptr && ps->colwidths[0] > 0/* && !p_isstopped ()*/) {
cairo_surface_t *surf = p_ispaused () ? pause16_pixmap : play16_pixmap;
cairo_set_source_surface (cr, surf, ps->colwidths[0]/2-8, row * rowheight - ps->scrollpos * rowheight);
cairo_rectangle (cr, ps->colwidths[0]/2-8, row * rowheight - ps->scrollpos * rowheight, 16, 16);