From b87f3850648e00459284785973d06ab7867d8022 Mon Sep 17 00:00:00 2001 From: Andrei Popa Date: Tue, 3 Dec 2024 11:50:30 +0200 Subject: [PATCH] gui / popup and overlay: fix background Signed-off-by: Andrei Popa --- gui/src/widgets/popupwidget.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/gui/src/widgets/popupwidget.cpp b/gui/src/widgets/popupwidget.cpp index 39b0442a23..d7b3bb9442 100644 --- a/gui/src/widgets/popupwidget.cpp +++ b/gui/src/widgets/popupwidget.cpp @@ -45,6 +45,7 @@ PopupWidget::~PopupWidget() void PopupWidget::initUI() { + Style::setBackgroundColor(this, json::theme::background_primary); this->setObjectName("PopupWidget"); this->resize(500, 300); auto verticalLayout = new QVBoxLayout(this);