mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-18 18:44:01 +00:00
59fc0a6669
Other improvements: - save state for theme switcher and last selected page - add optional fill all test space for pages fixes: 5401
23 lines
460 B
C++
23 lines
460 B
C++
#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);
|
|
|
|
app.setOrganizationName("Status");
|
|
app.setOrganizationDomain("status.im");
|
|
app.setApplicationName("Sandbox");
|
|
|
|
app.startEngine();
|
|
|
|
return app.exec();
|
|
}
|