From 9e7d3f50efff982f3080d4fcf025eebb380d7b52 Mon Sep 17 00:00:00 2001 From: fourtf Date: Wed, 25 Sep 2019 23:54:56 +0200 Subject: [PATCH] fixed #1335 light mode no good --- lib/appbase/widgets/BaseWindow.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/appbase/widgets/BaseWindow.cpp b/lib/appbase/widgets/BaseWindow.cpp index 95e95dfd4..b18a932b8 100644 --- a/lib/appbase/widgets/BaseWindow.cpp +++ b/lib/appbase/widgets/BaseWindow.cpp @@ -81,6 +81,8 @@ BaseWindow::BaseWindow(FlagsEnum _flags, QWidget *parent) QObject::connect(&this->useNextBounds_, &QTimer::timeout, this, [this]() { this->currentBounds_ = this->nextBounds_; }); #endif + + this->themeChangedEvent(); } void BaseWindow::setInitialBounds(const QRect &bounds)