1
0
Fork 0

gpstrek - Save state on kill if there is a route or waypoint set

master
Martin Boonk 2022-11-05 23:41:37 +01:00
parent 52dab3f31e
commit c55db65961
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ function saveState(){
} }
function onKill(){ function onKill(){
if (bgChanged){ if (bgChanged || state.route || state.waypoint){
saveState(); saveState();
} }
} }