diff options
| author | bulia byak <buliabyak@gmail.com> | 2006-03-15 20:31:48 +0000 |
|---|---|---|
| committer | buliabyak <buliabyak@users.sourceforge.net> | 2006-03-15 20:31:48 +0000 |
| commit | 762a6d180f231354b6e49347446dc2e3f21f1aef (patch) | |
| tree | 698c07af53216f765cb32b4a84747717795e8a42 /src/sp-use.cpp | |
| parent | minor comment tweak (diff) | |
| download | inkscape-762a6d180f231354b6e49347446dc2e3f21f1aef.tar.gz inkscape-762a6d180f231354b6e49347446dc2e3f21f1aef.zip | |
increase cutoff depth of recursive clone descriptions
(bzr r243)
Diffstat (limited to 'src/sp-use.cpp')
| -rw-r--r-- | src/sp-use.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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 <use> chains: * "Clone of: Clone of: ... in Layer 1". */ return g_strdup(_("...")); |
