mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2026-01-25 05:52:50 -05:00
15 lines
244 B
QML
15 lines
244 B
QML
import QtQuick
|
|
pragma Singleton
|
|
|
|
QtObject {
|
|
id: modalManager
|
|
|
|
signal closeAllModalsExcept(var excludedModal)
|
|
|
|
function openModal(modal) {
|
|
if (!modal.allowStacking) {
|
|
closeAllModalsExcept(modal)
|
|
}
|
|
}
|
|
}
|