aboutsummaryrefslogtreecommitdiff
path: root/src/mainwindow.c
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2011-05-24 12:00:54 +0200
committerThomas White <taw@physics.org>2011-05-24 12:00:54 +0200
commitb0770e263f6b94386aa0818b0c0f79ca486cf1b2 (patch)
tree88e847bcae02d329f868c45bee6a813d83abe45a /src/mainwindow.c
parent3885e41994b556b2f23290a245c1258f0ee34fae (diff)
Reduce editing box line width
Diffstat (limited to 'src/mainwindow.c')
-rw-r--r--src/mainwindow.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainwindow.c b/src/mainwindow.c
index f88c368..48740cd 100644
--- a/src/mainwindow.c
+++ b/src/mainwindow.c
@@ -192,7 +192,7 @@ static void draw_editing_box(cairo_t *cr, double xmin, double ymin,
cairo_new_path(cr);
cairo_rectangle(cr, xmin-5.0, ymin-5.0, width+10.0, height+10.0);
cairo_set_source_rgb(cr, 1.0, 0.0, 0.0);
- cairo_set_line_width(cr, 1.0);
+ cairo_set_line_width(cr, 0.5);
cairo_stroke(cr);
}