diff options
-rw-r--r-- | bootstrap.cxx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/bootstrap.cxx b/bootstrap.cxx index 7a03b8f..6f01ab1 100644 --- a/bootstrap.cxx +++ b/bootstrap.cxx @@ -2,11 +2,14 @@ Bootstrap::Bootstrap(QObject *parent): QObject(parent), - bs_mode(LightMode), bs_theme(None), bs_lightBodyBg("#fff"), bs_darkBodyBg("#212529") { + QFile conf{QStringLiteral(":/qtquickcontrols2.conf")}; + conf.open(QFile::ReadOnly | QFile::Text); + qDebug() << conf.readAll(); + conf.close(); } Bootstrap *Bootstrap::qmlAttachedProperties(QObject *object) |