diff options
| author | John Bintz <me@johnbintz.com> | 2006-09-24 22:24:25 +0000 |
|---|---|---|
| committer | johncoswell <johncoswell@users.sourceforge.net> | 2006-09-24 22:24:25 +0000 |
| commit | 7adf0d491d2fa8727c3b7ec84071e40f51067279 (patch) | |
| tree | 590608fc7f9d6bf681cf5f90c2b1e6ac04a3766c /src/arc-context.cpp | |
| parent | axonometric grid: angles cannot be larger than 89 degrees. (diff) | |
| download | inkscape-7adf0d491d2fa8727c3b7ec84071e40f51067279.tar.gz inkscape-7adf0d491d2fa8727c3b7ec84071e40f51067279.zip | |
Added forced redraws to other tools
(bzr r1719)
Diffstat (limited to 'src/arc-context.cpp')
| -rw-r--r-- | src/arc-context.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/arc-context.cpp b/src/arc-context.cpp index 0b0aad79e..934995b0a 100644 --- a/src/arc-context.cpp +++ b/src/arc-context.cpp @@ -408,6 +408,8 @@ static void sp_arc_drag(SPArcContext *ac, NR::Point pt, guint state) Inkscape::GC::release(repr); ac->item->transform = SP_ITEM(desktop->currentRoot())->getRelativeTransform(desktop->currentLayer()); ac->item->updateRepr(); + + sp_canvas_force_full_redraw_after_interruptions(desktop->canvas, 5); } NR::Rect const r = Inkscape::snap_rectangular_box(desktop, ac->item, pt, ac->center, state); @@ -432,6 +434,8 @@ static void sp_arc_finish(SPArcContext *ac) SP_OBJECT(ac->item)->updateRepr(); + sp_canvas_end_forced_full_redraws(desktop->canvas); + sp_desktop_selection(desktop)->set(ac->item); sp_document_done(sp_desktop_document(desktop), SP_VERB_CONTEXT_ARC, _("Create ellipse")); |
