From b47c3a6c8308e18171d9c17c1e4632e4c93f7695 Mon Sep 17 00:00:00 2001 From: Rob Pilling Date: Fri, 30 Jun 2023 12:20:29 +0100 Subject: [PATCH] multitimer: update menu title for `del` --- apps/multitimer/app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/multitimer/app.js b/apps/multitimer/app.js index adf85f05a..73b1dec2e 100644 --- a/apps/multitimer/app.js +++ b/apps/multitimer/app.js @@ -307,7 +307,7 @@ function editTimer(idx, a) { }, }, "Vibrate": require("buzz_menu").pattern(a.vibrate, v => a.vibrate = v), - "Oneshot": { + "Delete After Expiration": { value: !!a.del, onchange: v => a.del = v }, @@ -640,7 +640,7 @@ function editAlarm(idx, a) { }, }, "Vibrate": require("buzz_menu").pattern(a.vibrate, v => a.vibrate = v), - "Oneshot": { + "Delete After Expiration": { value: !!a.del, onchange: v => a.del = v },