Skip to content

Commit

Permalink
review tab space and blue logo name
Browse files Browse the repository at this point in the history
  • Loading branch information
10xcryptodev committed Apr 19, 2020
1 parent 5ff6acf commit 31e0c3d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/Makefile.qt.include
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ RES_IMAGES = \
qt/res/images/arrow_right_small.png \
qt/res/images/arrow_up_small.png \
qt/res/images/checked.png \
qt/res/images/dash_logo_blue.png \
qt/res/images/dash_logo_toolbar_blue.png \
qt/res/images/dash_logo_horizontal.png \
qt/res/images/dash_logo_toolbar.png \
qt/res/images/qtreeview_selected.png \
Expand Down
6 changes: 3 additions & 3 deletions src/qt/bitcoingui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,7 @@ void BitcoinGUI::createToolBars()
QString theme = settings.value("theme", "").toString();
QString logoImage = ":/images/dash_logo_toolbar";
if (theme == "Traditional") {
logoImage = ":/images/dash_logo_blue";
logoImage = ":/images/dash_logo_toolbar_blue";
}

QPixmap logoPixmap(logoImage);
Expand Down Expand Up @@ -678,13 +678,13 @@ void BitcoinGUI::setClientModel(ClientModel *_clientModel)
}
#endif // ENABLE_WALLET
unitDisplayControl->setOptionsModel(_clientModel->getOptionsModel());

OptionsModel* optionsModel = _clientModel->getOptionsModel();
if(optionsModel)
{
// be aware of the tray icon disable state change reported by the OptionsModel object.
connect(optionsModel,SIGNAL(hideTrayIconChanged(bool)),this,SLOT(setTrayIconVisible(bool)));

// initialize the disable state of the tray icon with the current value in the model.
setTrayIconVisible(optionsModel->getHideTrayIcon());
}
Expand Down
2 changes: 1 addition & 1 deletion src/qt/dash.qrc
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
<file alias="arrow_right_small">res/images/arrow_right_small.png</file>
<file alias="arrow_up_small">res/images/arrow_up_small.png</file>
<file alias="checked">res/images/checked.png</file>
<file alias="dash_logo_blue">res/images/dash_logo_blue.png</file>
<file alias="dash_logo_toolbar_blue">res/images/dash_logo_toolbar_blue.png</file>
<file alias="dash_logo_horizontal">res/images/dash_logo_horizontal.png</file>
<file alias="dash_logo_toolbar">res/images/dash_logo_toolbar.png</file>
<file alias="qtreeview_selected">res/images/qtreeview_selected.png</file>
Expand Down
File renamed without changes

0 comments on commit 31e0c3d

Please sign in to comment.