From 6d1345ff5d1c9c44730343dcdcd81cb5994d7e1d Mon Sep 17 00:00:00 2001 From: LotCooler Date: Tue, 2 Mar 2021 21:44:57 -0800 Subject: [PATCH] refactor ic-check-dashd-conf to generic coinname remove specific coinname from the filename to be more generic --- src/Makefile.qt.include | 2 +- src/qt/pivx.qrc | 2 +- src/qt/pivx/res/css/style_dark.css | 4 ++-- src/qt/pivx/res/css/style_light.css | 4 ++-- .../img/{ic-check-dashd-conf.svg => ic-check-coin-conf.svg} | 0 5 files changed, 6 insertions(+), 6 deletions(-) rename src/qt/pivx/res/img/{ic-check-dashd-conf.svg => ic-check-coin-conf.svg} (100%) diff --git a/src/Makefile.qt.include b/src/Makefile.qt.include index 152e055027..319351d5e0 100644 --- a/src/Makefile.qt.include +++ b/src/Makefile.qt.include @@ -330,7 +330,7 @@ RES_ICONS = \ qt/pivx/res/img/img-dashboard-banner.jpg \ qt/pivx/res/img/btn-radio-active.svg \ qt/pivx/res/img/ic-check-mn-conf.svg \ - qt/pivx/res/img/ic-check-dashd-conf.svg \ + qt/pivx/res/img/ic-check-coin-conf.svg \ qt/pivx/res/img/ic-check-sync-off.svg \ qt/pivx/res/img/ic-nav-privacy-active.svg \ qt/pivx/res/img/img-empty-contacts.svg \ diff --git a/src/qt/pivx.qrc b/src/qt/pivx.qrc index c092eb5e8f..eb0fcf39bc 100644 --- a/src/qt/pivx.qrc +++ b/src/qt/pivx.qrc @@ -111,7 +111,7 @@ pivx/res/img/ic-check-peers-off.svg pivx/res/img/ic-check-peers.svg pivx/res/img/ic-check-mn-conf.svg - pivx/res/img/ic-check-dashd-conf.svg + pivx/res/img/ic-check-coin-conf.svg pivx/res/img/ic-check-staking-off.svg pivx/res/img/ic-check-staking.svg pivx/res/img/ic-check-sync-off.svg diff --git a/src/qt/pivx/res/css/style_dark.css b/src/qt/pivx/res/css/style_dark.css index c5f4c1baab..0390160230 100644 --- a/src/qt/pivx/res/css/style_dark.css +++ b/src/qt/pivx/res/css/style_dark.css @@ -136,11 +136,11 @@ QPushButton[cssClass="img-nav-logo"] { !############# ################################*/ /***** -*masternode conf & dashd conf file edit topbar buttons. +*masternode conf & coin conf file edit topbar buttons. *****/ QPushButton[cssClass="btn-check-conf"] { - qproperty-icon: url("://ic-check-dashd-conf") ; + qproperty-icon: url("://ic-check-coin-conf") ; qproperty-iconSize: 24px 24px; color:#ffffff; background-color:#0b2c42; diff --git a/src/qt/pivx/res/css/style_light.css b/src/qt/pivx/res/css/style_light.css index 36259c6352..bc75da19fa 100644 --- a/src/qt/pivx/res/css/style_light.css +++ b/src/qt/pivx/res/css/style_light.css @@ -101,11 +101,11 @@ QPushButton[cssClass="img-nav-logo"] { } /***** -*masternode conf & dashd conf file edit topbar buttons. +*masternode conf & coin conf file edit topbar buttons. *****/ QPushButton[cssClass="btn-check-conf"] { - qproperty-icon: url("://ic-check-dashd-conf") ; + qproperty-icon: url("://ic-check-coin-conf") ; qproperty-iconSize: 24px 24px; color: #262626; background-color:#d1d3d4; diff --git a/src/qt/pivx/res/img/ic-check-dashd-conf.svg b/src/qt/pivx/res/img/ic-check-coin-conf.svg similarity index 100% rename from src/qt/pivx/res/img/ic-check-dashd-conf.svg rename to src/qt/pivx/res/img/ic-check-coin-conf.svg