From e48612184e0345083af50f0df4150a1dd4900f5e Mon Sep 17 00:00:00 2001 From: Mark Liversedge Date: Sun, 4 Aug 2013 22:24:56 +0100 Subject: [PATCH] Slightly larger SearchBox .. since it was 'just' too small for a typical query. --- src/MainWindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/MainWindow.cpp b/src/MainWindow.cpp index 0a3406f11..90270cde7 100644 --- a/src/MainWindow.cpp +++ b/src/MainWindow.cpp @@ -286,7 +286,7 @@ MainWindow::MainWindow(const QDir &home) SearchFilterBox *searchBox = new SearchFilterBox(this,context,false); QCleanlooksStyle *toolStyle = new QCleanlooksStyle(); searchBox->setStyle(toolStyle); - searchBox->setFixedWidth(150); + searchBox->setFixedWidth(200); head->addWidget(searchBox); connect(searchBox, SIGNAL(searchResults(QStringList)), this, SLOT(setFilter(QStringList))); connect(searchBox, SIGNAL(searchClear()), this, SLOT(clearFilter())); @@ -387,7 +387,7 @@ MainWindow::MainWindow(const QDir &home) // add a search box on far right, but with a little space too SearchFilterBox *searchBox = new SearchFilterBox(this,context,false); searchBox->setStyle(toolStyle); - searchBox->setFixedWidth(150); + searchBox->setFixedWidth(200); head->addWidget(searchBox); connect(searchBox, SIGNAL(searchResults(QStringList)), this, SLOT(setFilter(QStringList))); connect(searchBox, SIGNAL(searchClear()), this, SLOT(clearFilter()));