diff --git a/src/qtgui/rclmain_w.cpp b/src/qtgui/rclmain_w.cpp index e9436997..efcc0663 100644 --- a/src/qtgui/rclmain_w.cpp +++ b/src/qtgui/rclmain_w.cpp @@ -279,6 +279,9 @@ void RclMain::init() QKeySequence seq("Ctrl+Shift+s"); QShortcut *sc = new QShortcut(seq, this); connect(sc, SIGNAL (activated()), sSearch, SLOT (takeFocus())); + QKeySequence seql("Ctrl+l"); + sc = new QShortcut(seql, this); + connect(sc, SIGNAL (activated()), sSearch, SLOT (takeFocus())); connect(&m_watcher, SIGNAL(fileChanged(QString)), this, SLOT(idxStatus()));