diff options
author | Cosimo Cecchi <cosimoc@gnome.org> | 2010-12-06 17:36:51 +0100 |
---|---|---|
committer | Cosimo Cecchi <cosimoc@gnome.org> | 2010-12-06 17:37:36 +0100 |
commit | e3feaf8d6848a92e3d077d04177e7a637b6e628b (patch) | |
tree | 8db518f410e52dbfe6a088c873b1be8e6d22ca24 /eel | |
parent | 2e5f7a23350016c67bb9e9cca86a9fb2360d79e2 (diff) | |
download | nautilus-e3feaf8d6848a92e3d077d04177e7a637b6e628b.tar.gz |
editable-label: make the rename rectangle look a bit better
Still not perfect, but still...
Diffstat (limited to 'eel')
-rw-r--r-- | eel/eel-editable-label.c | 4 |
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); } } |