don't mark the first app on a page when moving between pages

master
thyttan 2023-01-06 19:16:42 +01:00
parent 059a2e7af7
commit 79006678c8
3 changed files with 4 additions and 2 deletions

View File

@ -25,4 +25,6 @@ facilitate 'fast switching' of apps where available.
widgets would still be loaded when they weren't supposed to. widgets would still be loaded when they weren't supposed to.
0.21: Bangle 2: Call Bangle.drawWidgets() early on so that the widget field 0.21: Bangle 2: Call Bangle.drawWidgets() early on so that the widget field
immediately follows the correct theme. immediately follows the correct theme.
0.22: Bangle 2: Change to not automatically marking the first app on a page
when moving pages.

View File

@ -90,7 +90,7 @@
let swipeListenerDt = function(dirLeftRight, dirUpDown){ let swipeListenerDt = function(dirLeftRight, dirUpDown){
updateTimeoutToClock(); updateTimeoutToClock();
selected = 0; selected = -1;
oldselected=-1; oldselected=-1;
if(settings.swipeExit && dirLeftRight==1) Bangle.showClock(); if(settings.swipeExit && dirLeftRight==1) Bangle.showClock();
if (dirUpDown==-1||dirLeftRight==-1){ if (dirUpDown==-1||dirLeftRight==-1){

View File

@ -1,7 +1,7 @@
{ {
"id": "dtlaunch", "id": "dtlaunch",
"name": "Desktop Launcher", "name": "Desktop Launcher",
"version": "0.21", "version": "0.22",
"description": "Desktop style App Launcher with six (four for Bangle 2) apps per page - fast access if you have lots of apps installed.", "description": "Desktop style App Launcher with six (four for Bangle 2) apps per page - fast access if you have lots of apps installed.",
"screenshots": [{"url":"shot1.png"},{"url":"shot2.png"},{"url":"shot3.png"}], "screenshots": [{"url":"shot1.png"},{"url":"shot2.png"},{"url":"shot3.png"}],
"icon": "icon.png", "icon": "icon.png",