Skip to content

Commit

Permalink
change font to roboto
Browse files Browse the repository at this point in the history
  • Loading branch information
backpacker69 committed Jan 31, 2019
1 parent feabfa8 commit 1fd7a93
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/qt/bitcoin.qrc
Expand Up @@ -110,7 +110,7 @@
<file alias="default">res/themes/default.qss</file>
</qresource>
<qresource prefix="/fonts">
<file alias="notosans-regular">res/fonts/NotoSans-Regular.ttf</file>
<file alias="roboto-regular">res/fonts/Roboto-Regular.ttf</file>
</qresource>
<qresource prefix="/controls">
<file alias="caret-down">res/images/controls/caret-down.png</file>
Expand Down
2 changes: 1 addition & 1 deletion src/qt/bitcoingui.cpp
Expand Up @@ -75,7 +75,7 @@ BitcoinGUI::BitcoinGUI(QWidget *parent) :
restoreWindowGeometry();
setWindowTitle(tr("Peercoin") + " - " + tr("Wallet"));

QFontDatabase::addApplicationFont(":/fonts/notosans-regular");
QFontDatabase::addApplicationFont(":/fonts/roboto-regular");
QFile styleFile(":/themes/default");
styleFile.open(QFile::ReadOnly);
QString styleSheet = QLatin1String(styleFile.readAll());
Expand Down
2 changes: 1 addition & 1 deletion src/qt/res/themes/default.qss
Expand Up @@ -7,7 +7,7 @@

/* Global Styles */
* {
font-family: "NotoSans-Regular";
font-family: "Roboto-Regular";
color: #666666;
}

Expand Down

0 comments on commit 1fd7a93

Please sign in to comment.