Skip to content

Commit 2211fe7

Browse files
committed
Merge bitcoin-core/gui#516: Change 'Show' icon
1831d43 Change 'Show' icon (w0xlt) Pull request description: This PR changes the 'Show' icon in `receivecoinsdialog.{ui,cpp}`. The current icon for the 'Show' button is the edit icon, which makes it look like records can be edited on this screen (which is not the case). The icon already available that seems to be the most suitable for this case is the "eye", so this PR makes this change. | PR | Master | | ------------- | ------------- | | <img width="209" alt="PR" src="https://user-images.githubusercontent.com/94266259/147833993-0758291c-af87-49a8-ae20-7fb9f944cb38.png"> | <img width="209" alt="master" src="https://user-images.githubusercontent.com/94266259/147833992-30d7549d-be7b-4479-8bca-314810e3adb8.png"> | ACKs for top commit: kristapsk: utACK 1831d43 shaavan: ACK 1831d43 hebasto: ACK 1831d43 Tree-SHA512: 45e2c0ed51626b40de486903602f2e84a74ff8f09d84de8412c30103d4e15fcddaddbc40571f653da487c538feca33411cf07ad7dd21a9a774bfd45b171330f4
2 parents 38146a4 + 1831d43 commit 2211fe7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/qt/forms/receivecoinsdialog.ui

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@
302302
</property>
303303
<property name="icon">
304304
<iconset resource="../bitcoin.qrc">
305-
<normaloff>:/icons/edit</normaloff>:/icons/edit</iconset>
305+
<normaloff>:/icons/eye</normaloff>:/icons/eye</iconset>
306306
</property>
307307
<property name="autoDefault">
308308
<bool>false</bool>

src/qt/receivecoinsdialog.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ ReceiveCoinsDialog::ReceiveCoinsDialog(const PlatformStyle *_platformStyle, QWid
3838
} else {
3939
ui->clearButton->setIcon(_platformStyle->SingleColorIcon(":/icons/remove"));
4040
ui->receiveButton->setIcon(_platformStyle->SingleColorIcon(":/icons/receiving_addresses"));
41-
ui->showRequestButton->setIcon(_platformStyle->SingleColorIcon(":/icons/edit"));
41+
ui->showRequestButton->setIcon(_platformStyle->SingleColorIcon(":/icons/eye"));
4242
ui->removeRequestButton->setIcon(_platformStyle->SingleColorIcon(":/icons/remove"));
4343
}
4444

0 commit comments

Comments
 (0)