summaryrefslogtreecommitdiff
path: root/libs/gtkmm2ext
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-12-11 02:19:10 +0100
committerRobin Gareus <robin@gareus.org>2016-12-11 02:19:10 +0100
commitcdbf49b873049f630a45eff6d683b945e031dbd8 (patch)
tree34947edd3af4537dc3ba9173411ec1bd206cc104 /libs/gtkmm2ext
parent6015481377bc7c96d7e09b263a18b285fe2fc282 (diff)
Revert "Pixel hunt cairo-packer (status-bar, selection-clock border)"
This reverts commit 6015481377bc7c96d7e09b263a18b285fe2fc282.
Diffstat (limited to 'libs/gtkmm2ext')
-rw-r--r--libs/gtkmm2ext/cairo_packer.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/gtkmm2ext/cairo_packer.cc b/libs/gtkmm2ext/cairo_packer.cc
index a3e34e5586..2f7b46f47d 100644
--- a/libs/gtkmm2ext/cairo_packer.cc
+++ b/libs/gtkmm2ext/cairo_packer.cc
@@ -36,7 +36,7 @@ CairoPacker::draw_background (Gtk::Widget& w, GdkEventExpose*)
Gdk::Color bg = get_bg ();
context->set_source_rgba (bg.get_red_p(), bg.get_green_p(), bg.get_blue_p(), 1.0);
- Gtkmm2ext::rounded_rectangle (context, x + 1, y + 1, w.get_allocation().get_width() - 2, w.get_allocation().get_height() - 2, 4);
+ Gtkmm2ext::rounded_rectangle (context, x, y, w.get_allocation().get_width(), w.get_allocation().get_height(), 4);
context->fill ();
}
}