Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2d079ce

Browse files
committed
Merged revisions 8796 via svnmerge from
https://matplotlib.svn.sf.net/svnroot/matplotlib/branches/v1_0_maint ........ r8796 | mdboom | 2010-11-12 11:56:38 -0500 (Fri, 12 Nov 2010) | 1 line Fix indentation ........ svn path=/trunk/matplotlib/; revision=8797
1 parent 470e595 commit 2d079ce

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

src/_backend_agg.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -433,8 +433,10 @@ RendererAgg::set_clipbox(const Py::Object& cliprect, R& rasterizer)
433433
{
434434
rasterizer.clip_box(int(mpl_round(l)), height - int(mpl_round(b)),
435435
int(mpl_round(r)), height - int(mpl_round(t)));
436-
} else {
437-
rasterizer.clip_box(0, 0, width, height);
436+
}
437+
else
438+
{
439+
rasterizer.clip_box(0, 0, width, height);
438440
}
439441

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

0 commit comments

Comments
 (0)