indicators: Update the indicator's visibility in the base class

So derived classes don't have to.
Doesn't affect ClassicIndicators, since it uses a separate
window for them. But useful for new indicator types.
This commit is contained in:
Sergio Martins
2020-08-22 19:57:58 +01:00
parent 2dc98804f4
commit 35076bbdb6

View File

@@ -38,6 +38,7 @@ void DropIndicatorOverlayInterface::setWindowBeingDragged(const FloatingWindow *
setHoveredFrame(nullptr);
}
setVisible(m_windowBeingDragged != nullptr);
updateVisibility();
}