From kde-commits Sat Jul 09 22:41:20 2011 From: Lamarque Souza Date: Sat, 09 Jul 2011 22:41:20 +0000 To: kde-commits Subject: KDE/kdenetwork/kopete/kopete Message-Id: <20110709224120.43FDEAC84E () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=131025130500830 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 );