From: Flavio Tordini Date: Tue, 4 Aug 2015 19:17:03 +0000 (+0200) Subject: Use standard font X-Git-Tag: 2.5~41 X-Git-Url: https://git.sur5r.net/?p=minitube;a=commitdiff_plain;h=303b76a07708e1f60493d45b2e3a7126323f4e99 Use standard font --- 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);