Play the first item of the result list when pressing "Enter" in global search

This commit is contained in:
Arnaud Bienner 2012-09-01 00:29:31 +02:00
parent d327d140c1
commit 04c4d97930
1 changed files with 4 additions and 0 deletions

View File

@ -397,6 +397,10 @@ bool GlobalSearchView::SearchKeyEvent(QKeyEvent* event) {
ui_->search->clear();
break;
case Qt::Key_Return:
AddSelectedToPlaylist();
break;
default:
return false;
}