]> git.sur5r.net Git - minitube/commitdiff
Fixed long queries in the recent keywords list (Thanks to Vadim P.)
authorFlavio Tordini <flavio.tordini@gmail.com>
Fri, 22 Jan 2010 21:41:47 +0000 (22:41 +0100)
committerFlavio Tordini <flavio.tordini@gmail.com>
Fri, 22 Jan 2010 21:41:47 +0000 (22:41 +0100)
CHANGES
src/SearchView.cpp

diff --git a/CHANGES b/CHANGES
index f91a1ab9b172f54270fa881dd1d801f3577addba..4b8087dbdd4c020ad7bdb27566a46434d5cd4d34 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -5,6 +5,7 @@
 - Fixed toolbar search suggestions working just once (Thanks to Salvatore Benedetto)
 - Fixed toobar search incorrect handling of keys that also represent a shortcut (like Escape or Space)
 - Fixed time formatting bug with videos longer than an hour (Thanks to Rene Bogusch)
+- Fixed long queries in the recent keywords list (Thanks to Vadim P.)
 - Norwegian translation by Jan W. Skjoldal
 
 0.8.1 - November 20, 2009
index e819e8d26c8ef5ef6cc1f864f8415f603cdf55a3..62eb5dc42e8685e0ba4d6194fa1c4a3c38bf0c82 100644 (file)
@@ -145,7 +145,8 @@ void SearchView::updateRecentKeywords() {
                                        + "\" style=\"color:palette(text); text-decoration:none\">"
                                        + keyword + "</a>", this);
 
-        itemLabel->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
+        itemLabel->setMaximumWidth(queryEdit->width() + watchButton->width());
+        // itemLabel->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
         // Make links navigable with the keyboard too
         itemLabel->setTextInteractionFlags(Qt::LinksAccessibleByKeyboard | Qt::LinksAccessibleByMouse);