SVN commit 1240754 by lvsouza: Commit patch from bug entry to change hotkey for hide/show contact list from Ctrl+Shift+I to Ctrl+Alt+T, so that it does not conflicts with Kate's hotkey. Thanks Robert Riemann for this patch. Unfortunately I saw it too late, it will appear only in KDE SC 4.8.0. BUG: 142875 M +1 -1 kopetewindow.cpp --- trunk/KDE/kdenetwork/kopete/kopete/kopetewindow.cpp #1240753:1240754 @@ -488,7 +488,7 @@ KAction *globalShowContactList = new KAction ( i18n ( "Show/Hide Contact List" ), this ); actionCollection()->addAction ( "ShowContactList", globalShowContactList ); connect ( globalShowContactList, SIGNAL ( triggered ( bool ) ), this, SLOT ( slotShowHide() ) ); - globalShowContactList->setGlobalShortcut ( KShortcut ( Qt::CTRL + Qt::SHIFT + Qt::Key_S ) ); + globalShowContactList->setGlobalShortcut ( KShortcut ( Qt::CTRL + Qt::ALT + Qt::Key_T ) ); globalShowContactList->setWhatsThis ( i18n ( "Show or hide the contact list" ) ); KAction *globalSetAway = new KAction ( i18n ( "Set Away/Back" ), this );