Add a forgotten break in render_border

The GTK_BORDER_STYLE_DOUBLE case was clearly not meant to
fall through to the subsequent cases, yet it did.
Found by Coverity.
This commit is contained in:
Matthias Clasen
2012-11-29 22:42:36 -05:00
parent 77e2df6145
commit b85098c819

View File

@@ -1674,6 +1674,7 @@ render_border (cairo_t *cr,
border->left - other_border.left);
render_frame_fill (cr, &other_box, &other_border, colors, dont_draw);
}
break;
case GTK_BORDER_STYLE_GROOVE:
case GTK_BORDER_STYLE_RIDGE:
{