summaryrefslogtreecommitdiff
path: root/services/math.ts
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-01-14 19:24:50 +1100
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-01-14 19:24:50 +1100
commitecf491668751aefa408c57a841b0d2086497344d (patch)
treeb650505d8f16734c346754269c5497078878f396 /services/math.ts
parentlauncher: fd based file search (diff)
downloadcaelestia-shell-ecf491668751aefa408c57a841b0d2086497344d.tar.gz
caelestia-shell-ecf491668751aefa408c57a841b0d2086497344d.tar.bz2
caelestia-shell-ecf491668751aefa408c57a841b0d2086497344d.zip
launcher: better math error message
Diffstat (limited to 'services/math.ts')
-rw-r--r--services/math.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/services/math.ts b/services/math.ts
index 8fbf757..41e1488 100644
--- a/services/math.ts
+++ b/services/math.ts
@@ -121,7 +121,7 @@ export default class Math extends GObject.Object {
icon = "calculate";
}
} catch (e) {
- equation = "Invalid equation";
+ equation = "Invalid equation: " + equation;
result = String(e);
icon = "error";
}