comparison audacious/playlist_list.c @ 736:113f66421a62 trunk

[svn] - another playlist DND fix
author nenolod
date Mon, 27 Feb 2006 16:51:14 -0800
parents 35e19f8de781
children 4c7ee8f64d9b
comparison
equal deleted inserted replaced
735:35e19f8de781 736:113f66421a62
698 gdk_gc_set_foreground(gc, 698 gdk_gc_set_foreground(gc,
699 skin_get_color(bmp_active_skin, 699 skin_get_color(bmp_active_skin,
700 SKIN_PLEDIT_CURRENT)); 700 SKIN_PLEDIT_CURRENT));
701 701
702 gdk_draw_line(obj, gc, pl->pl_widget.x, 702 gdk_draw_line(obj, gc, pl->pl_widget.x,
703 pl->pl_widget.y + lpadding + 703 pl->pl_widget.y +
704 (width_approx_letters / 4), 704 ((pos - pl->pl_first) * pl->pl_fheight),
705 pl->pl_widget.width + pl->pl_widget.x - 1, 705 pl->pl_widget.width + pl->pl_widget.x - 1,
706 pl->pl_widget.y + 706 pl->pl_widget.y +
707 ((pos - pl->pl_first) * pl->pl_fheight)); 707 ((pos - pl->pl_first) * pl->pl_fheight));
708 708
709 } 709 }