We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52bf100 commit 6a1eab9Copy full SHA for 6a1eab9
apps/clock_info/lib.js
@@ -23,7 +23,7 @@ exports.loadSettings = function() {
23
hrmOn : 0, // 0(Always), 1(Tap)
24
defocusOnLock : true,
25
maxAltitude : 3000,
26
- haptics:false,
+ haptics:true,
27
apps : {}
28
},
29
require("Storage").readJSON("clock_info.json",1)||{}
@@ -358,7 +358,7 @@ exports.addInteractive = function(menu, options) {
358
if (!options.focus) {
359
focus();
360
} else if (menu[options.menuA].items[options.menuB].run) {
361
- Bangle.buzz(100, 0.7);
+ if(settings.haptics) Bangle.buzz(100, 0.7);
362
menu[options.menuA].items[options.menuB].run(options); // allow tap on an item to run it (eg home assistant)
363
}
364
};
0 commit comments