1
0
mirror of https://github.com/chylex/Nextcloud-Desktop.git synced 2025-04-23 23:15:41 +02:00

SharedDialog: Fix the delete icon on windows and mac ()

This commit is contained in:
Olivier Goffart 2015-11-17 10:40:45 +01:00
parent 6e42405113
commit ef915fb2e5
3 changed files with 4 additions and 0 deletions

View File

@ -21,5 +21,6 @@
<file>resources/lock-https@2x.png</file>
<file>resources/account.png</file>
<file>resources/more.png</file>
<file>resources/delete.png</file>
</qresource>
</RCC>

BIN
resources/delete.png Normal file

Binary file not shown.

After

(image error) Size: 243 B

View File

@ -205,6 +205,9 @@ ShareWidget::ShareWidget(QSharedPointer<Share> share,
connect(share.data(), SIGNAL(permissionsSet()), SLOT(slotPermissionsSet()));
connect(share.data(), SIGNAL(shareDeleted()), SLOT(slotShareDeleted()));
_ui->deleteShareButton->setIcon(QIcon::fromTheme(QLatin1String("user-trash"),
QIcon(QLatin1String(":/client/resources/delete.png"))));
}
void ShareWidget::on_deleteShareButton_clicked()