From: buliabyak Date: Wed, 26 Mar 2008 06:05:01 +0000 (+0000) Subject: mention that an item is filtered in its statusbar description X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=2e01c348a7462bafef5d0c6d751a4f0dc9480b18;p=inkscape.git mention that an item is filtered in its statusbar description --- diff --git a/src/sp-item.cpp b/src/sp-item.cpp index ca77296d8..fc966aff4 100644 --- a/src/sp-item.cpp +++ b/src/sp-item.cpp @@ -985,6 +985,11 @@ sp_item_description(SPItem *item) g_free (s); s = snew; } + if (SP_OBJECT_STYLE(item) && SP_OBJECT_STYLE(item)->filter.href) { + gchar *snew = g_strdup_printf (_("%s; filtered"), s); + g_free (s); + s = snew; + } return s; }