diff options
| author | MenTaLguY <mental@rydia.net> | 2007-03-17 06:51:35 +0000 |
|---|---|---|
| committer | mental <mental@users.sourceforge.net> | 2007-03-17 06:51:35 +0000 |
| commit | 4132345ba756f54ede51dfb00f4819bb0a939d0d (patch) | |
| tree | 9539073cbc4fd5c6f2deb66323d15311447bd7ca /src/display/sp-canvas.cpp | |
| parent | move creating style after the signals are set up, so that style does not miss... (diff) | |
| download | inkscape-4132345ba756f54ede51dfb00f4819bb0a939d0d.tar.gz inkscape-4132345ba756f54ede51dfb00f4819bb0a939d0d.zip | |
clean up rect mess a bit before start working on other stuff
(bzr r2678)
Diffstat (limited to 'src/display/sp-canvas.cpp')
| -rw-r--r-- | src/display/sp-canvas.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/display/sp-canvas.cpp b/src/display/sp-canvas.cpp index 559515e03..94eb984a3 100644 --- a/src/display/sp-canvas.cpp +++ b/src/display/sp-canvas.cpp @@ -751,8 +751,8 @@ sp_canvas_group_update (SPCanvasItem *item, NR::Matrix const &affine, unsigned i item->x2 = bounds->max()[NR::X]; item->y2 = bounds->max()[NR::Y]; } else { - item->x1 = item->x2 = corners.midpoint()[NR::X]; - item->y1 = item->y2 = corners.midpoint()[NR::Y]; + // FIXME ? + item->x1 = item->x2 = item->y1 = item->y2 = 0; } } |
