mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2025-12-06 05:25:41 -05:00
17 lines
264 B
QML
17 lines
264 B
QML
pragma Singleton
|
|
|
|
import Quickshell
|
|
import QtQuick
|
|
|
|
Singleton {
|
|
id: modalManager
|
|
|
|
signal closeAllModalsExcept(var excludedModal)
|
|
|
|
function openModal(modal) {
|
|
if (!modal.allowStacking) {
|
|
closeAllModalsExcept(modal)
|
|
}
|
|
}
|
|
}
|