mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-17 08:17:59 +00:00
replace qDebug for qWarning, lean message
This commit is contained in:
parent
b4353a31ac
commit
d074854aae
1 changed files with 3 additions and 9 deletions
12
main.cpp
12
main.cpp
|
@ -229,15 +229,9 @@ int main(int argc, char *argv[])
|
||||||
engine.rootContext()->setContextProperty("scaleRatio", 1);
|
engine.rootContext()->setContextProperty("scaleRatio", 1);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
qDebug() << "available width: " << geo.width();
|
qWarning().nospace() << "Qt:" << QT_VERSION_STR << " | screen: " << width
|
||||||
qDebug() << "available height: " << geo.height();
|
<< "x" << height << " - dpi: " << dpi << " - ratio:"
|
||||||
qDebug() << "devicePixelRatio: " << app.devicePixelRatio();
|
<< calculated_ratio;
|
||||||
qDebug() << "screen height: " << height;
|
|
||||||
qDebug() << "screen width: " << width;
|
|
||||||
qDebug() << "screen logical dpi: " << dpi;
|
|
||||||
qDebug() << "screen Physical dpi: " << physicalDpi;
|
|
||||||
qDebug() << "screen calculated ratio: " << calculated_ratio;
|
|
||||||
|
|
||||||
|
|
||||||
if (!moneroAccountsRootDir.empty()) {
|
if (!moneroAccountsRootDir.empty()) {
|
||||||
QString moneroAccountsDir = moneroAccountsRootDir.at(0) + "/Monero/wallets";
|
QString moneroAccountsDir = moneroAccountsRootDir.at(0) + "/Monero/wallets";
|
||||||
|
|
Loading…
Reference in a new issue