diff options
| author | John Smith <john.smith7545@yahoo.com> | 2012-09-06 02:25:16 +0000 |
|---|---|---|
| committer | John Smith <john.smith7545@yahoo.com> | 2012-09-06 02:25:16 +0000 |
| commit | 701002a149020e89d9023dbe56c6d0ccdb5c3aca (patch) | |
| tree | 13182f947b67738a1b2ee4595dce67b184a42be7 /src/box3d-context.cpp | |
| parent | Fix for 499965 : PS Output : Convert export area to radio buttons (diff) | |
| download | inkscape-701002a149020e89d9023dbe56c6d0ccdb5c3aca.tar.gz inkscape-701002a149020e89d9023dbe56c6d0ccdb5c3aca.zip | |
Fix for 580160 : Deleting a gradient stop using Shape tools deletes the object
(bzr r11655)
Diffstat (limited to 'src/box3d-context.cpp')
| -rw-r--r-- | src/box3d-context.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/box3d-context.cpp b/src/box3d-context.cpp index 405cfd11b..a58059e89 100644 --- a/src/box3d-context.cpp +++ b/src/box3d-context.cpp @@ -557,6 +557,11 @@ static gint sp_box3d_context_root_handler(SPEventContext *event_context, GdkEven // do not return true, so that space would work switching to selector } break; + case GDK_KEY_Delete: + case GDK_KEY_KP_Delete: + case GDK_KEY_BackSpace: + ret = event_context->deleteSelectedDrag(MOD__CTRL_ONLY); + break; default: break; |
