diff options
| author | bulia byak <buliabyak@gmail.com> | 2008-03-26 06:05:01 +0000 |
|---|---|---|
| committer | buliabyak <buliabyak@users.sourceforge.net> | 2008-03-26 06:05:01 +0000 |
| commit | efd85cf9f2b8a003a60b7572e42a3498730b9bd4 (patch) | |
| tree | 396d8de9f5b7bb9919469169d9152324a0f6de1d /src/sp-item.cpp | |
| parent | fix crash caused by a gradient without a zero-offset stop (diff) | |
| download | inkscape-efd85cf9f2b8a003a60b7572e42a3498730b9bd4.tar.gz inkscape-efd85cf9f2b8a003a60b7572e42a3498730b9bd4.zip | |
mention that an item is filtered in its statusbar description
(bzr r5192)
Diffstat (limited to 'src/sp-item.cpp')
| -rw-r--r-- | src/sp-item.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
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; <i>filtered</i>"), s); + g_free (s); + s = snew; + } return s; } |
