From 914a8c5d46722b2aca64203b5bc3ee33351f5804 Mon Sep 17 00:00:00 2001 From: Flavio Date: Thu, 16 Oct 2014 15:28:18 +0200 Subject: [PATCH] Fixed search icon --- src/searchlineedit.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/searchlineedit.cpp b/src/searchlineedit.cpp index 1d04f68..d316752 100644 --- a/src/searchlineedit.cpp +++ b/src/searchlineedit.cpp @@ -95,7 +95,7 @@ void SearchButton::paintEvent(QPaintEvent *event) { const int h = height(); int iconSize = 16; if (h > 30) iconSize = 22; - QPixmap p = IconUtils::fromTheme("edit-find-symbolic").pixmap(iconSize, iconSize); + QPixmap p = IconUtils::icon("edit-find").pixmap(iconSize, iconSize); int x = (width() - p.width()) / 2; int y = (h - p.height()) / 2; painter.drawPixmap(x, y, p); -- 2.39.5