diff options
| author | Maximilian Albert <maximilian.albert@gmail.com> | 2008-02-23 23:40:33 +0000 |
|---|---|---|
| committer | cilix42 <cilix42@users.sourceforge.net> | 2008-02-23 23:40:33 +0000 |
| commit | 6429c462cf8ca411d8ca755fc490a99c639161b2 (patch) | |
| tree | c29294d277ce06af072336a609feb993d372e84e /src/box3d-context.cpp | |
| parent | Added pathscatter effect + slight modif of simpletransform... to compute bbox... (diff) | |
| download | inkscape-6429c462cf8ca411d8ca755fc490a99c639161b2.tar.gz inkscape-6429c462cf8ca411d8ca755fc490a99c639161b2.zip | |
Fix LP #194718
(bzr r4836)
Diffstat (limited to 'src/box3d-context.cpp')
| -rw-r--r-- | src/box3d-context.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/box3d-context.cpp b/src/box3d-context.cpp index a1e033955..e03f7d184 100644 --- a/src/box3d-context.cpp +++ b/src/box3d-context.cpp @@ -188,7 +188,7 @@ static void sp_box3d_context_selection_changed(Inkscape::Selection *selection, g SPDocument *doc = sp_desktop_document(bc->desktop); doc->persps_sel.clear(); - doc->persps_sel = persp3d_currently_selected_persps(ec); + doc->persps_sel = persp3d_currently_selected_persps(); SPItem *item = selection->singleItem(); if (item) { @@ -509,7 +509,7 @@ static gint sp_box3d_context_root_handler(SPEventContext *event_context, GdkEven ret = TRUE; } if (MOD__SHIFT_ONLY) { - persp3d_toggle_VPs(persp3d_currently_selected_persps(event_context), Proj::X); + persp3d_toggle_VPs(persp3d_currently_selected_persps(), Proj::X); bc->_vpdrag->updateLines(); // FIXME: Shouldn't this be done automatically? ret = true; } @@ -518,7 +518,7 @@ static gint sp_box3d_context_root_handler(SPEventContext *event_context, GdkEven case GDK_y: case GDK_Y: if (MOD__SHIFT_ONLY) { - persp3d_toggle_VPs(persp3d_currently_selected_persps(event_context), Proj::Y); + persp3d_toggle_VPs(persp3d_currently_selected_persps(), Proj::Y); bc->_vpdrag->updateLines(); // FIXME: Shouldn't this be done automatically? ret = true; } @@ -527,7 +527,7 @@ static gint sp_box3d_context_root_handler(SPEventContext *event_context, GdkEven case GDK_z: case GDK_Z: if (MOD__SHIFT_ONLY) { - persp3d_toggle_VPs(persp3d_currently_selected_persps(event_context), Proj::Z); + persp3d_toggle_VPs(persp3d_currently_selected_persps(), Proj::Z); bc->_vpdrag->updateLines(); // FIXME: Shouldn't this be done automatically? ret = true; } |
