Hush full node GUI wallet
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
786 B

6 years ago
#include "mainwindow.h"
#include "precompiled.h"
int main(int argc, char *argv[])
{
6 years ago
QCoreApplication::setAttribute(Qt::AA_UseHighDpiPixmaps);
QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
QApplication a(argc, argv);
6 years ago
QIcon icon(":/icons/res/icon.ico");
a.setWindowIcon(icon);
#ifdef Q_OS_LINUX
QFontDatabase::addApplicationFont(":/fonts/res/Ubuntu-R.ttf");
qApp->setFont(QFont("Ubuntu", 11, QFont::Normal, false));
#endif
6 years ago
QCoreApplication::setOrganizationName("adityapk");
QCoreApplication::setOrganizationDomain("adityapk.com");
QCoreApplication::setApplicationName("zcash-qt-wallet");
MainWindow w;
w.setWindowTitle("zcash-qt-wallet v" + QString(APP_VERSION));
6 years ago
w.show();
return QApplication::exec();
}