summaryrefslogtreecommitdiff
path: root/services
diff options
context:
space:
mode:
authorATMDA <atdma2600@gmail.com>2025-11-15 01:31:53 -0500
committerATMDA <atdma2600@gmail.com>2025-11-15 01:31:53 -0500
commit05b0660627586dc7624380e82b818b53004771f5 (patch)
tree085b9ca84bf5646d4c619c5746c8e84b55ee99bd /services
parentinternal: use existing button controls (diff)
downloadcaelestia-shell-05b0660627586dc7624380e82b818b53004771f5.tar.gz
caelestia-shell-05b0660627586dc7624380e82b818b53004771f5.tar.bz2
caelestia-shell-05b0660627586dc7624380e82b818b53004771f5.zip
controlcenter: password input errors/wrong pass
Diffstat (limited to 'services')
-rw-r--r--services/Nmcli.qml10
1 files changed, 9 insertions, 1 deletions
diff --git a/services/Nmcli.qml b/services/Nmcli.qml
index 24a93da..36bd3e6 100644
--- a/services/Nmcli.qml
+++ b/services/Nmcli.qml
@@ -1272,7 +1272,15 @@ Singleton {
stdout: SplitParser {
onRead: root.refreshOnConnectionChange()
}
- onExited: Qt.callLater(() => monitorProc.running = true, 2000)
+ onExited: monitorRestartTimer.start()
+ }
+
+ Timer {
+ id: monitorRestartTimer
+ interval: 2000
+ onTriggered: {
+ monitorProc.running = true;
+ }
}
function refreshOnConnectionChange(): void {