diff --git a/doomsday/plugins/common/src/m_ctrl.cpp b/doomsday/plugins/common/src/m_ctrl.cpp index 4cdd1c0e02..0f3d4e25ae 100644 --- a/doomsday/plugins/common/src/m_ctrl.cpp +++ b/doomsday/plugins/common/src/m_ctrl.cpp @@ -654,10 +654,10 @@ int InputBindingWidget::handleEvent_Privileged(event_t *ev) { bindContext = binds->bindContext; + // The Delete key in the Menu context is reserved for deleting bindings if((!strcmp(bindContext, "menu") || !strcmp(bindContext, "shortcut")) && !strcmp(symbol + 5, "key-delete-down")) { - throw Error("InputBindingWidget::handleEvent_Priviledged", "The Delete key in the Menu context is reserved for deleting bindings"); return false; } }