1
mirror of https://invent.kde.org/network/falkon.git synced 2024-12-20 02:36:34 +01:00

[StatusBarIcon] Add fallback icons for buttons in Proxy Manager.

This commit is contained in:
nowrep 2013-05-28 21:25:15 +02:00
parent a30ff3f0ba
commit b6a386f73b
4 changed files with 4 additions and 2 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 579 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 640 B

View File

@ -28,8 +28,8 @@ SBI_NetworkIconDialog::SBI_NetworkIconDialog(QWidget* parent)
{
ui->setupUi(this);
ui->addButton->setIcon(QIcon::fromTheme("document-new"));
ui->removeButton->setIcon(QIcon::fromTheme("edit-delete"));
ui->addButton->setIcon(QIcon::fromTheme("document-new", QIcon(":sbi/data/add.png")));
ui->removeButton->setIcon(QIcon::fromTheme("edit-delete", QIcon(":sbi/data/remove.png")));
const QHash<QString, SBI_NetworkProxy*> &proxies = SBINetManager->proxies();

View File

@ -7,5 +7,7 @@
<file>data/network-online.png</file>
<file>data/network-unknown.png</file>
<file>data/preferences-network.png</file>
<file>data/add.png</file>
<file>data/remove.png</file>
</qresource>
</RCC>