From 9624e5c387ee81a2064529a1964210a034b37035 Mon Sep 17 00:00:00 2001 From: Jan Holthuis Date: Mon, 23 Mar 2020 11:18:58 +0100 Subject: [PATCH] widget/woverview: Fix disappearing passthru overview on skin change --- src/widget/woverview.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/widget/woverview.cpp b/src/widget/woverview.cpp index f5e15ba2b0b..f7b01949ef1 100644 --- a/src/widget/woverview.cpp +++ b/src/widget/woverview.cpp @@ -84,6 +84,8 @@ WOverview::WOverview( m_pPassthroughControl = new ControlProxy(m_group, "passthrough", this); m_pPassthroughControl->connectValueChanged(this, &WOverview::onPassthroughChange); + onPassthroughChange(m_pPassthroughControl->get()); + setAcceptDrops(true); setMouseTracking(true);