Skip to content

Commit 3bb2994

Browse files
allenpiscitellostevenroose
authored andcommitted
Changing Elements Icon to just the graphic without text, fixing issue with gitian builds on icon, removing color change based on testnet for Elements, and compatible svg with build script.
1 parent 0551932 commit 3bb2994

File tree

3 files changed

+32
-21
lines changed

3 files changed

+32
-21
lines changed

src/Makefile.am

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -718,7 +718,7 @@ EXTRA_DIST += $(RES_RENDERED_ICON_SRC) $(RES_ALL_RENDERED_ICONS)
718718
if CAN_RENDER_ICONS
719719

720720
qt/res/rendered_icons/about.png: qt/res/rendered_icons/about.svg
721-
$(RSVG_CONVERT) -f png -d 142 -p 142 < $< | $(IMAGEMAGICK_CONVERT) - -crop 64x78+0+31 -bordercolor transparent -border 7x0 -colorspace Gray -strip $@
721+
$(RSVG_CONVERT) -f png -d 142 -p 142 < $< | $(IMAGEMAGICK_CONVERT) - -bordercolor transparent -colorspace Gray -strip $@
722722

723723
qt/res/rendered_icons/about.svg: qt/res/src/bitcoin.svg
724724
@$(MKDIR_P) $(@D)
@@ -739,14 +739,14 @@ qt/res/rendered_icons/bitcoin.ico: qt/res/rendered_icons/bitcoin32d8.gif $(patsu
739739
$(IMAGEMAGICK_CONVERT) $^ $@
740740

741741
qt/res/rendered_icons/bitcoin_testnet.ico: qt/res/rendered_icons/bitcoin.ico
742-
$(IMAGEMAGICK_CONVERT) $^ -modulate 100,87,9 $@
742+
$(IMAGEMAGICK_CONVERT) $^ $@
743743

744744
qt/res/rendered_icons/nsis-wizard.svg: qt/res/src/bitcoin.svg
745745
@$(MKDIR_P) $(@D)
746746
sed '/fill="#000"/d' < $< > $@
747747

748748
qt/res/rendered_icons/nsis-wizard.bmp: qt/res/rendered_icons/nsis-wizard.svg
749-
$(RSVG_CONVERT) -f png -d 360 -p 360 < $< | $(IMAGEMAGICK_CONVERT) - -crop 164x290+0+35 -border 0x12 -strip BMP3:$@
749+
$(RSVG_CONVERT) -f png -d 360 -p 360 < $< | $(IMAGEMAGICK_CONVERT) - -strip BMP3:$@
750750

751751
endif
752752

src/qt/res/src/bitcoin.svg

Lines changed: 28 additions & 17 deletions
Loading

src/qt/splashscreen.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ SplashScreen::SplashScreen(interfaces::Node& node, Qt::WindowFlags f, const Netw
6565

6666
// draw the bitcoin icon, expected size of PNG: 1024x1024
6767
int _32 = 32 / devicePixelRatio;
68-
QRect rectIcon(QPoint(_32,-_32/2), QSize(pixmap.size().height()/devicePixelRatio+_32*2,pixmap.size().height()/devicePixelRatio+_32*2));
68+
QRect rectIcon(QPoint(0, 0), QSize(pixmap.size().height()/(2*devicePixelRatio)+_32*2, pixmap.size().height()/(2 * devicePixelRatio)+_32*2));
6969

7070
const QSize requiredSize(1024,1024);
7171
QPixmap icon(networkStyle->getAppIcon().pixmap(requiredSize));

0 commit comments

Comments
 (0)