Fixed bug that drop overlay sometimes was not visible when moving the drag preview over a floating window

This bug was caused by accidentally using hide() instead of hideOverlay()
This commit is contained in:
Uwe Kindler 2020-04-27 15:20:27 +02:00
parent cdc863e962
commit 80aee638c9

View File

@ -156,7 +156,7 @@ void FloatingDragPreviewPrivate::updateDropOverlays(const QPoint &GlobalPos)
// would be removed and inserted at the same position
if (VisibleDockAreas <= 1)
{
ContainerOverlay->hide();
ContainerOverlay->hideOverlay();
}
if (DockArea == ContentSourceArea && InvalidDockWidgetArea == ContainerDropArea)