File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -976,20 +976,18 @@ void menuPointPerfect()
976976 {
977977 settings.enablePointPerfectCorrections ^= 1 ;
978978 restartRover = true ; // Require a rover restart to enable / disable RTCM for PPL
979- if (settings.enablePointPerfectCorrections )
980- forceKeyAttempt = true ; // Force a key update
979+ forceKeyAttempt = settings.enablePointPerfectCorrections ; // Force a key update - or don't
981980 }
982981
983982#ifdef COMPILE_NETWORK
984983 else if (incoming == 2 && pointPerfectIsEnabled ())
985984 {
986985 settings.autoKeyRenewal ^= 1 ;
987- if (settings.autoKeyRenewal )
988- forceKeyAttempt = true ; // Force a key update
986+ forceKeyAttempt = settings.autoKeyRenewal ; // Force a key update - or don't
989987 }
990988 else if (incoming == 3 && pointPerfectIsEnabled ())
991989 {
992- forceKeyAttempt = true ; // Force a key update
990+ forceKeyAttempt ^= 1 ;
993991 }
994992#endif // COMPILE_NETWORK
995993 else if (incoming == ' c' && pointPerfectIsEnabled ())
You can’t perform that action at this time.
0 commit comments