diff options
| author | Nicolas Dufour <nicoduf@yahoo.fr> | 2011-06-27 18:57:12 +0000 |
|---|---|---|
| committer | JazzyNico <nicoduf@yahoo.fr> | 2011-06-27 18:57:12 +0000 |
| commit | 0ef9a2a418fa95af850ce36fb469676c86464296 (patch) | |
| tree | 8c89151230a7bd789a0c3818aa3032ef239219ad /src/svg-view.cpp | |
| parent | fix crasher (diff) | |
| download | inkscape-0ef9a2a418fa95af850ce36fb469676c86464296.tar.gz inkscape-0ef9a2a418fa95af850ce36fb469676c86464296.zip | |
Inkview. Fix for bug #771365 (Inkview rendering with incorrect scaling when slide showing multiple files).
(bzr r10376)
Diffstat (limited to 'src/svg-view.cpp')
| -rw-r--r-- | src/svg-view.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/svg-view.cpp b/src/svg-view.cpp index b35375736..5deff7421 100644 --- a/src/svg-view.cpp +++ b/src/svg-view.cpp @@ -198,6 +198,8 @@ SPSVGView::setDocument (SPDocument *document) g_signal_connect (G_OBJECT (_drawing), "arena_event", G_CALLBACK (arena_handler), this); } + View::setDocument (document); + if (document) { NRArenaItem *ai = SP_ITEM( document->getRoot() )->invoke_show( SP_CANVAS_ARENA (_drawing)->arena, @@ -210,8 +212,6 @@ SPSVGView::setDocument (SPDocument *document) doRescale (!_rescale); } - - View::setDocument (document); } /** |
