Skip to content

Commit d869297

Browse files
author
bumbacoin
committed
fix naming issue
1 parent a35e05f commit d869297

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

share/qt/make_windows_icon.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#!/bin/bash
22
# create multiresolution windows icon
3-
ICON_SRC=../../src/qt/res/icons/stronghands.png
4-
ICON_DST=../../src/qt/res/icons/stronghands.ico
5-
convert ${ICON_SRC} -resize 16x16 stronghands-16.png
6-
convert ${ICON_SRC} -resize 32x32 stronghands-32.png
7-
convert ${ICON_SRC} -resize 48x48 stronghands-48.png
8-
convert stronghands-48.png stronghands-32.png stronghands-16.png ${ICON_DST}
3+
ICON_SRC=../../src/qt/res/icons/Stronghands.png
4+
ICON_DST=../../src/qt/res/icons/Stronghands.ico
5+
convert ${ICON_SRC} -resize 16x16 Stronghands-16.png
6+
convert ${ICON_SRC} -resize 32x32 Stronghands-32.png
7+
convert ${ICON_SRC} -resize 48x48 Stronghands-48.png
8+
convert Stronghands-48.png Stronghands-32.png Stronghands-16.png ${ICON_DST}
99

src/qt/bitcoin.qrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE RCC><RCC version="1.0">
22
<qresource prefix="/icons">
33
<file alias="bitcoin">res/icons/bitcoin.png</file>
4-
<file alias="stronghands">res/icons/stronghands.png</file>
4+
<file alias="stronghands">res/icons/Stronghands.png</file>
55
<file alias="address-book">res/icons/address-book.png</file>
66
<file alias="quit">res/icons/quit.png</file>
77
<file alias="send">res/icons/send.png</file>

src/qt/res/bitcoin-qt-res.rc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
IDI_ICON1 ICON DISCARDABLE "icons/stronghands.ico"
1+
IDI_ICON1 ICON DISCARDABLE "icons/Stronghands.ico"
22
IDI_ICON2 ICON DISCARDABLE "icons/stronghands_testnet.ico"
33

44
#include <windows.h> // needed for VERSIONINFO

0 commit comments

Comments
 (0)