From 90fafa219a54f5ee2e81d2fbb8d7827cb93235c6 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Sat, 9 Aug 2025 22:09:07 +0700 Subject: [PATCH] remove unnecessary qualified access --- .config/quickshell/ii/services/Pomodoro.qml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.config/quickshell/ii/services/Pomodoro.qml b/.config/quickshell/ii/services/Pomodoro.qml index 8bb198076..8376499d9 100644 --- a/.config/quickshell/ii/services/Pomodoro.qml +++ b/.config/quickshell/ii/services/Pomodoro.qml @@ -84,7 +84,7 @@ Singleton { interval: 200 running: root.isPomodoroRunning repeat: true - onTriggered: Pomodoro.refreshPomodoro() + onTriggered: refreshPomodoro() } function togglePomodoro() { @@ -112,14 +112,14 @@ Singleton { interval: 10 running: root.isStopwatchRunning repeat: true - onTriggered: root.refreshStopwatch() + onTriggered: refreshStopwatch() } function toggleStopwatch() { if (root.isStopwatchRunning) - root.stopwatchPause() + stopwatchPause() else - root.stopwatchResume() + stopwatchResume() } function stopwatchPause() {