Skip to content

Commit 582b46f

Browse files
committed
Fix indentation
svn path=/branches/v1_0_maint/; revision=8796
1 parent fbda603 commit 582b46f

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/_backend_agg.cpp

+4-2
Original file line numberDiff line numberDiff line change
@@ -431,8 +431,10 @@ RendererAgg::set_clipbox(const Py::Object& cliprect, R& rasterizer)
431431
{
432432
rasterizer.clip_box(int(mpl_round(l)), height - int(mpl_round(b)),
433433
int(mpl_round(r)), height - int(mpl_round(t)));
434-
} else {
435-
rasterizer.clip_box(0, 0, width, height);
434+
}
435+
else
436+
{
437+
rasterizer.clip_box(0, 0, width, height);
436438
}
437439

438440
_VERBOSE("RendererAgg::set_clipbox done");

0 commit comments

Comments
 (0)