summaryrefslogtreecommitdiffstats
path: root/src/node-context.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/node-context.cpp')
-rw-r--r--src/node-context.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/node-context.cpp b/src/node-context.cpp
index 33b4a53e0..57af59bd4 100644
--- a/src/node-context.cpp
+++ b/src/node-context.cpp
@@ -484,6 +484,14 @@ sp_node_context_root_handler(SPEventContext *event_context, GdkEvent *event)
se->add_node();
ret = TRUE;
break;
+ case GDK_I:
+ case GDK_i:
+ // apple keyboards have no Insert
+ if (MOD__SHIFT_ONLY) {
+ se->add_node();
+ ret = TRUE;
+ }
+ break;
case GDK_Delete:
case GDK_KP_Delete:
case GDK_BackSpace: