diff options
| author | Michael Wybrow <michael.wybrow@monash.edu> | 2010-08-13 05:22:17 +0000 |
|---|---|---|
| committer | Michael Wybrow <mjwybrow@users.sf.net> | 2010-08-13 05:22:17 +0000 |
| commit | 2d242cc16fd1a6d47559e0cb91d66520c840a092 (patch) | |
| tree | 1b23f41a709c683d348a7af47625661bbb6106e1 /src/connector-context.cpp | |
| parent | Translations. Romanian translation update by Cristian Secară. (diff) | |
| download | inkscape-2d242cc16fd1a6d47559e0cb91d66520c840a092.tar.gz inkscape-2d242cc16fd1a6d47559e0cb91d66520c840a092.zip | |
Fix bug #612756 where connectors with zero length (due to being clipped
to the perimeter of two overlapping objects) could crash the connector
context.
Fixed bugs:
- https://launchpad.net/bugs/612756
(bzr r9705.1.1)
Diffstat (limited to 'src/connector-context.cpp')
| -rw-r--r-- | src/connector-context.cpp | 27 |
1 files changed, 22 insertions, 5 deletions
diff --git a/src/connector-context.cpp b/src/connector-context.cpp index 3791034d6..1263a9215 100644 --- a/src/connector-context.cpp +++ b/src/connector-context.cpp @@ -1760,12 +1760,22 @@ cc_set_active_conn(SPConnectorContext *cc, SPItem *item) if (cc->active_conn == item) { - // Just adjust handle positions. - Geom::Point startpt = *(curve->first_point()) * i2d; - sp_knot_set_position(cc->endpt_handle[0], startpt, 0); + if (curve->is_empty()) + { + // Connector is invisible because it is clipped to the boundary of + // two overlpapping shapes. + sp_knot_hide(cc->endpt_handle[0]); + sp_knot_hide(cc->endpt_handle[1]); + } + else + { + // Just adjust handle positions. + Geom::Point startpt = *(curve->first_point()) * i2d; + sp_knot_set_position(cc->endpt_handle[0], startpt, 0); - Geom::Point endpt = *(curve->last_point()) * i2d; - sp_knot_set_position(cc->endpt_handle[1], endpt, 0); + Geom::Point endpt = *(curve->last_point()) * i2d; + sp_knot_set_position(cc->endpt_handle[1], endpt, 0); + } return; } @@ -1828,6 +1838,13 @@ cc_set_active_conn(SPConnectorContext *cc, SPItem *item) G_CALLBACK(endpt_handler), cc); } + if (curve->is_empty()) + { + // Connector is invisible because it is clipped to the boundary + // of two overlpapping shapes. So, it doesn't need endpoints. + return; + } + Geom::Point startpt = *(curve->first_point()) * i2d; sp_knot_set_position(cc->endpt_handle[0], startpt, 0); |
