Ignore critical notifications in window heap effects
We filter out regular notifications, but critical notifications are their own window type, so we need to explicitly filter them too BUG: 463437
This commit is contained in:
parent
87cd6bda4e
commit
ccaf0210d1
3 changed files with 6 additions and 3 deletions
|
@ -124,7 +124,8 @@ FocusScope {
|
|||
clientModel: desktopView.clientModel
|
||||
windowType: ~KWinComponents.ClientFilterModel.Dock &
|
||||
~KWinComponents.ClientFilterModel.Desktop &
|
||||
~KWinComponents.ClientFilterModel.Notification
|
||||
~KWinComponents.ClientFilterModel.Notification &
|
||||
~KWinComponents.ClientFilterModel.CriticalNotification
|
||||
}
|
||||
delegate: WindowHeapDelegate {
|
||||
windowHeap: heap
|
||||
|
|
|
@ -247,7 +247,8 @@ FocusScope {
|
|||
minimizedWindows: !effect.ignoreMinimized
|
||||
windowType: ~KWinComponents.ClientFilterModel.Dock &
|
||||
~KWinComponents.ClientFilterModel.Desktop &
|
||||
~KWinComponents.ClientFilterModel.Notification
|
||||
~KWinComponents.ClientFilterModel.Notification &
|
||||
~KWinComponents.ClientFilterModel.CriticalNotification
|
||||
}
|
||||
delegate: WindowHeapDelegate {
|
||||
windowHeap: heap
|
||||
|
|
|
@ -200,7 +200,8 @@ Item {
|
|||
minimizedWindows: !effect.ignoreMinimized
|
||||
windowType: ~KWinComponents.ClientFilterModel.Dock &
|
||||
~KWinComponents.ClientFilterModel.Desktop &
|
||||
~KWinComponents.ClientFilterModel.Notification
|
||||
~KWinComponents.ClientFilterModel.Notification &
|
||||
~KWinComponents.ClientFilterModel.CriticalNotification
|
||||
}
|
||||
delegate: WindowHeapDelegate {
|
||||
windowHeap: heap
|
||||
|
|
Loading…
Reference in a new issue