mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-08 18:45:57 +01:00
do not reject drags on visible windows over fullscreen
This commit is contained in:
parent
cba10ba5b7
commit
6e3bd440ba
1 changed files with 2 additions and 2 deletions
|
@ -132,8 +132,8 @@ void IHyprLayout::onBeginDragWindow() {
|
|||
|
||||
const auto PWORKSPACE = g_pCompositor->getWorkspaceByID(DRAGGINGWINDOW->m_iWorkspaceID);
|
||||
|
||||
if (PWORKSPACE->m_bHasFullscreenWindow) {
|
||||
Debug::log(LOG, "Rejecting drag on a fullscreen workspace.");
|
||||
if (PWORKSPACE->m_bHasFullscreenWindow && (!DRAGGINGWINDOW->m_bCreatedOverFullscreen || !DRAGGINGWINDOW->m_bIsFloating)) {
|
||||
Debug::log(LOG, "Rejecting drag on a fullscreen workspace. (window under fullscreen)");
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue