summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorGravatar waker <wakeroid@gmail.com>2011-10-09 11:18:40 +0200
committerGravatar waker <wakeroid@gmail.com>2011-10-09 11:18:40 +0200
commit1c89b325521ccd180b4e1248a44f8f25edfc4e0f (patch)
tree3de05d9c9580a0f9ae855b6f77c2f4cbc3b9a689 /plugins
parent5657d853070368da634acf7954db984885e23982 (diff)
fixed separator line in group titles
Diffstat (limited to 'plugins')
-rw-r--r--plugins/gtkui/gdkdrawing.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/gtkui/gdkdrawing.c b/plugins/gtkui/gdkdrawing.c
index 9a86f2b4..41967bb8 100644
--- a/plugins/gtkui/gdkdrawing.c
+++ b/plugins/gtkui/gdkdrawing.c
@@ -53,7 +53,7 @@ draw_set_fg_color (float *rgb) {
void
draw_line (float x1, float y1, float x2, float y2) {
cairo_move_to (drawable, x1, y1);
- cairo_move_to (drawable, x2, y2);
+ cairo_line_to (drawable, x2, y2);
cairo_stroke (drawable);
}