summaryrefslogtreecommitdiffstats
path: root/src/desktop.cpp
diff options
context:
space:
mode:
authorDiederik van Lierop <mailat-signdiedenrezidotnl>2010-08-28 08:09:45 +0000
committerDiederik van Lierop <mailat-signdiedenrezidotnl>2010-08-28 08:09:45 +0000
commitb11930319d8af5dafda710ff8f4184083adf89fa (patch)
tree240c06e17a09cf7e262bce6713cdbe86436d0cba /src/desktop.cpp
parentExtensions. Fix live preview crash in custom color extension when invalid val... (diff)
downloadinkscape-b11930319d8af5dafda710ff8f4184083adf89fa.tar.gz
inkscape-b11930319d8af5dafda710ff8f4184083adf89fa.zip
Fix LP bug #622350: Discard events when desktop->event_context has not been set, instead of crashing.
(bzr r9728)
Diffstat (limited to 'src/desktop.cpp')
-rw-r--r--src/desktop.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/desktop.cpp b/src/desktop.cpp
index a93fb6a4a..1fdad010f 100644
--- a/src/desktop.cpp
+++ b/src/desktop.cpp
@@ -636,9 +636,15 @@ SPDesktop::set_event_context (GtkType type, const gchar *config)
event_context = next;
}
+ // The event_context will be null. This means that it will be impossible
+ // to process any event invoked by the lines below. See for example bug
+ // LP #622350. Cutting and undoing again in the node tool resets the event
+ // context to the node tool. In this bug the line bellow invokes GDK_LEAVE_NOTIFY
+ // events which cannot be handled and must be discarded.
ec = sp_event_context_new (type, this, config, SP_EVENT_CONTEXT_STATIC);
ec->next = event_context;
event_context = ec;
+ // Now the event_context has been set again and we can process all events again
sp_event_context_activate (ec);
_event_context_changed_signal.emit (this, ec);
}
@@ -1367,7 +1373,7 @@ SPDesktop::emitToolSubselectionChanged(gpointer data)
void
SPDesktop::updateNow()
{
- sp_canvas_update_now(canvas);
+ sp_canvas_update_now(canvas);
}
void