From 4e7296f58dbce45c5427ecb1c2b19139a2f2e205 Mon Sep 17 00:00:00 2001 From: mental Date: Sun, 11 Mar 2007 21:50:28 +0000 Subject: [PATCH] argh, missed selection-chemistry somehow --- src/selection-chemistry.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/selection-chemistry.cpp b/src/selection-chemistry.cpp index 5fa5b0d7e..bc9ebe7a5 100644 --- a/src/selection-chemistry.cpp +++ b/src/selection-chemistry.cpp @@ -1527,7 +1527,7 @@ sp_selection_scale_absolute(Inkscape::Selection *selection, return; NR::Maybe const bbox(selection->bounds()); - if ( !bbox || bbox->isEmpty() ) { + if ( !bbox ) { return; } @@ -1550,7 +1550,7 @@ void sp_selection_scale_relative(Inkscape::Selection *selection, NR::Point const NR::Maybe const bbox(selection->bounds()); - if ( !bbox || bbox->isEmpty() ) { + if ( !bbox ) { return; } @@ -2202,7 +2202,7 @@ sp_selection_tile(bool apply) sp_document_ensure_up_to_date(document); NR::Maybe r = selection->bounds(); - if ( !r || r->isEmpty() ) { + if ( !r ) { return; } -- 2.30.2