1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-04-03 20:32:07 -04:00

popout: fix focusing of password prompts when popout is open

undesired effect of closing the popout but its probably the best solution
This commit is contained in:
bbedward
2026-03-16 11:37:21 -04:00
parent e633c9e039
commit 59451890f1
2 changed files with 12 additions and 2 deletions

View File

@@ -70,6 +70,16 @@ DankPopout {
backgroundInteractive: !anyModalOpen
onCredentialsPromptOpenChanged: {
if (credentialsPromptOpen && shouldBeVisible)
close();
}
onPolkitModalOpenChanged: {
if (polkitModalOpen && shouldBeVisible)
close();
}
customKeyboardFocus: {
if (!shouldBeVisible)
return WlrKeyboardFocus.None;

View File

@@ -407,8 +407,8 @@ Item {
visible: false
x: contentContainer.x - root.shadowBuffer
y: contentContainer.y - root.shadowBuffer
width: root.alignedWidth + root.shadowBuffer * 2
height: root.alignedHeight + root.shadowBuffer * 2
width: shouldBeVisible ? root.alignedWidth + root.shadowBuffer * 2 : 0
height: shouldBeVisible ? root.alignedHeight + root.shadowBuffer * 2 : 0
}
MouseArea {