From: buliabyak Date: Wed, 15 Mar 2006 20:31:48 +0000 (+0000) Subject: increase cutoff depth of recursive clone descriptions X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=a99c0a3a25cf76af3151638f9276b460b2a46652;p=inkscape.git increase cutoff depth of recursive clone descriptions --- diff --git a/src/sp-use.cpp b/src/sp-use.cpp index 3a55331a0..52f8f11e4 100644 --- a/src/sp-use.cpp +++ b/src/sp-use.cpp @@ -294,7 +294,7 @@ sp_use_description(SPItem *item) char *ret; if (use->child) { static unsigned recursion_depth = 0; - if (recursion_depth >= 2) { + if (recursion_depth >= 4) { /* TRANSLATORS: Used for statusbar description for long chains: * "Clone of: Clone of: ... in Layer 1". */ return g_strdup(_("..."));