From 303b76a07708e1f60493d45b2e3a7126323f4e99 Mon Sep 17 00:00:00 2001 From: Flavio Tordini Date: Tue, 4 Aug 2015 21:17:03 +0200 Subject: [PATCH] Use standard font --- src/refinesearchwidget.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/refinesearchwidget.cpp b/src/refinesearchwidget.cpp index b66f64d..ddd0999 100644 --- a/src/refinesearchwidget.cpp +++ b/src/refinesearchwidget.cpp @@ -19,7 +19,6 @@ along with Minitube. If not, see . $END_LICENSE */ #include "refinesearchwidget.h" -#include "fontutils.h" #include "searchparams.h" #ifdef APP_EXTRA #include "extra.h" @@ -167,8 +166,7 @@ void RefineSearchWidget::setupLabel(const QString &text, QBoxLayout *layout, con icon->setPixmap(translucentPixmap); hLayout->addWidget(icon); - QLabel *label = new QLabel(text.toUpper(), this); - label->setFont(FontUtils::small()); + QLabel *label = new QLabel(text, this); label->setStyleSheet("color: rgba(0, 0, 0, 128);"); hLayout->addWidget(label); -- 2.39.2