From: mental Date: Sun, 11 Mar 2007 23:12:38 +0000 (+0000) Subject: disable empty enforcement for now X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=fc13e01575ec2d012502f0a12c61adf1120d6c03;p=inkscape.git disable empty enforcement for now --- diff --git a/src/libnr/nr-rect.cpp b/src/libnr/nr-rect.cpp index a9487045a..d4ba14e1a 100644 --- a/src/libnr/nr-rect.cpp +++ b/src/libnr/nr-rect.cpp @@ -246,9 +246,11 @@ Rect::Rect(const Point &p0, const Point &p1) : _min(std::min(p0[X], p1[X]), std::min(p0[Y], p1[Y])), _max(std::max(p0[X], p1[X]), std::max(p0[Y], p1[Y])) { + if (0) { if ( _min[X] == _max[X] || _min[Y] == _max[Y] ) { throw EmptyRectangle(); } + } } /** returns the four corners of the rectangle in the correct winding order */