From 4ec4a739a34504a811ce6b9f9f34cb145c067dcd Mon Sep 17 00:00:00 2001 From: Kai Uwe Broulik Date: Thu, 24 Aug 2017 11:22:27 +0200 Subject: [PATCH] [PanelShadows] Update m_windows in setEnabledBorders m_windows keeps track of which window has which borders so it can update them when e.g. theme changes. Unfortunately, it was never updated after the window was initially added. Differential Revision: https://phabricator.kde.org/D7505 --- shell/panelshadows.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/shell/panelshadows.cpp b/shell/panelshadows.cpp index cdd4fdb64..f58de77c0 100644 --- a/shell/panelshadows.cpp +++ b/shell/panelshadows.cpp @@ -175,6 +175,7 @@ void PanelShadows::setEnabledBorders(const QWindow *window, Plasma::FrameSvg::En return; } + d->m_windows[window] = enabledBorders; d->updateShadow(window, enabledBorders); }