From 91f2d55635d524def18f7a6c65752e8e73a6d9d9 Mon Sep 17 00:00:00 2001 From: David Faure Date: Mon, 29 Oct 2007 10:52:17 +0000 Subject: [PATCH] Fix Ctrl+Del calling kill window - I need my Ctrl+Del in xemacs to delete a word forward :) This appears to have been introduced by r568780, which turned META+CTRL+Del into CTRL+Del to "only use 3-modifiers shortcuts in the code"; it now uses the kde3 shortcut instead, ctrl+alt+esc, which should be okay since the point of r568780 was really to avoid META I think. CCMAIL: l.lunak@kde.org svn path=/trunk/KDE/kdebase/workspace/; revision=730689 --- kwinbindings.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kwinbindings.cpp b/kwinbindings.cpp index fd71617cf2..6dae3cb8ea 100644 --- a/kwinbindings.cpp +++ b/kwinbindings.cpp @@ -169,7 +169,7 @@ a = actionCollection->addAction( "Group:Miscellaneous" ); a->setText( i18n("Miscellaneous") ); DEF( I18N_NOOP("Mouse Emulation"), Qt::ALT+Qt::Key_F12, slotMouseEmulation() ); - DEF( I18N_NOOP("Kill Window"), Qt::CTRL+Qt::Key_Delete, slotKillWindow() ); + DEF( I18N_NOOP("Kill Window"), Qt::CTRL+Qt::ALT+Qt::Key_Escape, slotKillWindow() ); DEF( I18N_NOOP("Window Screenshot To Clipboard"), Qt::ALT+Qt::Key_Print, slotGrabWindow() ); DEF( I18N_NOOP("Desktop Screenshot To Clipboard"), Qt::CTRL+Qt::Key_Print, slotGrabDesktop() ); DEF( I18N_NOOP("Block Global Shortcuts"), 0, slotDisableGlobalShortcuts());