mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-02-21 17:20:37 +02:00
Fix high DPI scaling
not android
This commit is contained in:
parent
e826f7c1ec
commit
e90c18603a
4
main.cpp
4
main.cpp
@ -64,6 +64,10 @@ void messageHandler(QtMsgType type, const QMessageLogContext &context, const QSt
|
|||||||
|
|
||||||
int main(int argc, char *argv[])
|
int main(int argc, char *argv[])
|
||||||
{
|
{
|
||||||
|
// Enable high DPI scaling on windows & linux
|
||||||
|
#if !defined(Q_OS_ANDROID)
|
||||||
|
QGuiApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
|
||||||
|
#endif
|
||||||
Monero::Wallet::init(argv[0], "monero-wallet-gui");
|
Monero::Wallet::init(argv[0], "monero-wallet-gui");
|
||||||
|
|
||||||
qInstallMessageHandler(messageHandler);
|
qInstallMessageHandler(messageHandler);
|
||||||
|
Loading…
Reference in New Issue
Block a user