0
0
mirror of https://github.com/keepassxreboot/keepassxc.git synced 2024-09-20 12:22:16 +02:00

Fix icons/application/22x22/action folder name.

This commit is contained in:
Felix Geyer 2012-05-27 12:47:46 +02:00
parent 264c69d046
commit 10321adc0b
10 changed files with 3 additions and 3 deletions

View File

@ -42,7 +42,7 @@ Copyright: 2003-2004, David Vignoni <david@icon-king.com>
2012, Felix Geyer <debfx@fobos.de>
License: LGPL-2.1
Files: share/icons/application/*/action/dialog-close.png, share/icons/application/*/action/dialog-ok.png,
Files: share/icons/application/*/actions/dialog-close.png, share/icons/application/*/actions/dialog-ok.png,
share/icons/application/*/status/dialog-error.png, share/icons/application/*/status/dialog-information.png,
share/icons/application/*/status/dialog-warning.png, share/icons/application/*/actions/system-search.png
Copyright: 2007, Nuno Pinheiro <nuno@oxygen-icons.org>

View File

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

Before

Width:  |  Height:  |  Size: 723 B

After

Width:  |  Height:  |  Size: 723 B

View File

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -80,7 +80,7 @@ DatabaseWidget::DatabaseWidget(Database* db, QWidget* parent)
rightHandSideWidget->setSizePolicy(policy);
QAction* closeAction = new QAction(m_searchWidget);
QIcon closeIcon = dataPath()->icon("action", "dialog-close");
QIcon closeIcon = dataPath()->icon("actions", "dialog-close");
closeAction->setIcon(closeIcon);
m_searchUi->closeSearchButton->setDefaultAction(closeAction);
m_searchWidget->hide();

View File

@ -19,7 +19,7 @@ LineEdit::LineEdit(QWidget* parent)
{
m_clearButton = new QToolButton(this);
m_clearButton->setObjectName("clearButton");
QIcon icon = dataPath()->icon("action", "edit-clear-locationbar-rtl");
QIcon icon = dataPath()->icon("actions", "edit-clear-locationbar-rtl");
m_clearButton->setIcon(icon);
m_clearButton->setCursor(Qt::ArrowCursor);
m_clearButton->setStyleSheet("QToolButton { border: none; padding: 0px; }");