2021-05-04 18:31:15 +00:00
|
|
|
#include <QGuiApplication>
|
|
|
|
#include <QQmlApplicationEngine>
|
|
|
|
#include <QDebug>
|
|
|
|
|
|
|
|
#include "sandboxapp.h"
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
|
|
|
|
QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
SandboxApp app(argc, argv);
|
2022-04-07 18:38:47 +00:00
|
|
|
|
2022-07-04 15:09:00 +00:00
|
|
|
qputenv("QT_QUICK_CONTROLS_HOVER_ENABLED", QByteArrayLiteral("1"));
|
|
|
|
|
2022-04-07 18:38:47 +00:00
|
|
|
app.setOrganizationName("Status");
|
|
|
|
app.setOrganizationDomain("status.im");
|
|
|
|
app.setApplicationName("Sandbox");
|
|
|
|
|
2021-05-04 18:31:15 +00:00
|
|
|
app.startEngine();
|
|
|
|
|
|
|
|
return app.exec();
|
|
|
|
}
|