popover: Use the right area for drawing the background

The border shouldn't be subtracted.
This commit is contained in:
Timm Bäder 2014-10-26 15:21:06 +01:00 committed by Benjamin Otte
parent 8b6457732f
commit 4d075cf202

View File

@ -856,9 +856,9 @@ gtk_popover_draw (GtkWidget *widget,
/* Render the rect background */
gtk_render_background (context, cr,
rect_x1 + border.left, rect_y1 + border.top,
rect_x2 - rect_x1 - border.left - border.right,
rect_y2 - rect_y1 - border.top - border.bottom);
rect_x1, rect_y1,
rect_x2 - rect_x1,
rect_y2 - rect_y1);
gtk_popover_get_gap_coords (popover,
&initial_x, &initial_y,