mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2026-08-02 03:28:28 -04:00
57d08f6b3b
- Fix dbar autohide with Xray options that could have blocked bar area content - Fixes #2729
26 lines
646 B
QML
26 lines
646 B
QML
pragma ComponentBehavior: Bound
|
|
|
|
import QtQuick
|
|
import Quickshell
|
|
import qs.Common
|
|
|
|
Variants {
|
|
id: root
|
|
|
|
model: Quickshell.screens
|
|
|
|
delegate: Loader {
|
|
id: instanceLoader
|
|
|
|
required property var modelData
|
|
|
|
// Live-or-latched: instances build early on enable, survive until ack on disable
|
|
active: (SettingsData.frameEnabled || FrameTransitionState.effectiveFrameEnabled) && SettingsData.isScreenInPreferences(instanceLoader.modelData, SettingsData.frameScreenPreferences)
|
|
asynchronous: false
|
|
|
|
sourceComponent: FrameInstance {
|
|
screen: instanceLoader.modelData
|
|
}
|
|
}
|
|
}
|