More optims and renaming

This commit is contained in:
LemmyCook 2025-08-25 22:17:13 -04:00
parent d2563db5a0
commit 269b2765cd
7 changed files with 78 additions and 82 deletions

View file

@ -12,7 +12,7 @@ Singleton {
property var messageQueue: []
property bool isShowingToast: false
// Reference to all toast instances (set by ToastManager)
// Reference to all toast instances (set by ToastOverlay)
property var allToasts: []
// Properties for command checking
@ -197,6 +197,7 @@ Singleton {
toast.type = toastData.type
toast.persistent = toastData.persistent
toast.duration = toastData.duration
toast.show()
}
}
@ -236,8 +237,4 @@ Singleton {
}
}
}
Component.onCompleted: {
}
}