summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCosimo Cecchi <cosimoc@gnome.org>2010-12-06 17:36:51 +0100
committerCosimo Cecchi <cosimoc@gnome.org>2010-12-06 17:37:36 +0100
commite3feaf8d6848a92e3d077d04177e7a637b6e628b (patch)
tree8db518f410e52dbfe6a088c873b1be8e6d22ca24
parent2e5f7a23350016c67bb9e9cca86a9fb2360d79e2 (diff)
downloadnautilus-e3feaf8d6848a92e3d077d04177e7a637b6e628b.tar.gz
editable-label: make the rename rectangle look a bit better
Still not perfect, but still...
-rw-r--r--eel/eel-editable-label.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/eel/eel-editable-label.c b/eel/eel-editable-label.c
index a042eaa7a..f2465fe79 100644
--- a/eel/eel-editable-label.c
+++ b/eel/eel-editable-label.c
@@ -1837,8 +1837,8 @@ eel_editable_label_draw (GtkWidget *widget,
gdk_cairo_set_source_rgba (cr, &color);
cairo_set_line_width (cr, 1.0);
cairo_rectangle (cr, 0.5, 0.5,
- allocation.width - 1,
- allocation.height - 1);
+ allocation.width - 2,
+ allocation.height - 2);
cairo_stroke (cr);
}
}