From 4f7ed4da53cbe5c3dcc7a4872701147da2250a0f Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Thu, 26 Jun 2025 22:36:55 +0200 Subject: [PATCH] search widget: fix wrong calculator result (#1424) --- .config/quickshell/modules/overview/SearchWidget.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/quickshell/modules/overview/SearchWidget.qml b/.config/quickshell/modules/overview/SearchWidget.qml index 7d7cc9525..93286265b 100644 --- a/.config/quickshell/modules/overview/SearchWidget.qml +++ b/.config/quickshell/modules/overview/SearchWidget.qml @@ -90,7 +90,7 @@ Item { // Wrapper id: mathProcess property list baseCommand: ["qalc", "-t"] function calculateExpression(expression) { - // mathProcess.running = false + mathProcess.running = false mathProcess.command = baseCommand.concat(expression) mathProcess.running = true }