diff options
| author | Liam P. White <inkscapebrony@gmail.com> | 2014-08-09 18:55:23 +0000 |
|---|---|---|
| committer | Liam P. White <inkscapebrony@gmail.com> | 2014-08-09 18:55:23 +0000 |
| commit | c3115995762ecfed8ebed035cf682c525a32dd0c (patch) | |
| tree | c959648001273acf4f0e70bcca8ffdbe36fc438f /src/libavoid/connector.cpp | |
| parent | Massive performance improvment for basic node operations with thousands of nodes (diff) | |
| parent | Fix related to bug #1327267 -- don't bother to update gradient toolbar when n... (diff) | |
| download | inkscape-c3115995762ecfed8ebed035cf682c525a32dd0c.tar.gz inkscape-c3115995762ecfed8ebed035cf682c525a32dd0c.zip | |
Update to trunk r13504
(bzr r13341.1.125)
Diffstat (limited to 'src/libavoid/connector.cpp')
| -rw-r--r-- | src/libavoid/connector.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/libavoid/connector.cpp b/src/libavoid/connector.cpp index b8c99a48c..40ded7498 100644 --- a/src/libavoid/connector.cpp +++ b/src/libavoid/connector.cpp @@ -845,7 +845,10 @@ bool ConnRef::generatePath(void) break; } // Check we don't have an apparent infinite connector path. - COLA_ASSERT(pathlen < 200); +//#ifdef PATHDEBUG + db_printf("Path length: %i\n", pathlen); +//#endif + COLA_ASSERT(pathlen < 10000); } std::vector<Point> path(pathlen); |
