From: gustav_b Date: Sun, 21 Oct 2007 20:23:02 +0000 (+0000) Subject: Allow SPFlowtexts to be used in boolean operations X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=ab8b433f900ba071544cc64285aaee73077c03c5;p=inkscape.git Allow SPFlowtexts to be used in boolean operations --- diff --git a/src/splivarot.cpp b/src/splivarot.cpp index d16137c1d..fff70eb25 100644 --- a/src/splivarot.cpp +++ b/src/splivarot.cpp @@ -187,7 +187,7 @@ sp_selected_path_boolop(bool_op bop, const unsigned int verb, const Glib::ustrin for (GSList *l = il; l != NULL; l = l->next) { SPItem *item = SP_ITEM(l->data); - if (!SP_IS_SHAPE(item) && !SP_IS_TEXT(item)) + if (!SP_IS_SHAPE(item) && !SP_IS_TEXT(item) && !SP_IS_FLOWTEXT(item)) { desktop->messageStack()->flash(Inkscape::ERROR_MESSAGE, _("One of the objects is not a path, cannot perform boolean operation.")); g_slist_free(il);