From: Flavio Tordini Date: Thu, 2 Jul 2009 21:00:49 +0000 (+0200) Subject: Navigate recent keywords with the keyboard by pressing Tab X-Git-Tag: 0.4~4 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=205604f1cb3215000cd9cd54bcb883bc74c87fc2;p=minitube Navigate recent keywords with the keyboard by pressing Tab --- diff --git a/src/SearchView.cpp b/src/SearchView.cpp index c1f2cbe..5171988 100644 --- a/src/SearchView.cpp +++ b/src/SearchView.cpp @@ -126,6 +126,7 @@ void SearchView::updateRecentKeywords() { QLabel *itemLabel = new QLabel("" + keyword + "", this); + itemLabel->setTextInteractionFlags(Qt::LinksAccessibleByKeyboard); connect(itemLabel, SIGNAL(linkActivated(QString)), this, SLOT(watch(QString))); recentKeywordsLayout->addWidget(itemLabel); }