fix parentheses
This commit is contained in:
parent
89fba046d8
commit
6d1bfde23b
1 changed files with 1 additions and 1 deletions
|
@ -332,7 +332,7 @@ public class SavingTrackHelper extends SQLiteOpenHelper {
|
|||
|
||||
//check if recording is active for widget status light
|
||||
if (OsmandPlugin.getEnabledPlugin(OsmandMonitoringPlugin.class) != null) {
|
||||
if (settings.SAVE_GLOBAL_TRACK_TO_GPX.get() || (settings.SAVE_TRACK_TO_GPX.get() && ctx.getRoutingHelper().isFollowingMode()) {
|
||||
if (settings.SAVE_GLOBAL_TRACK_TO_GPX.get() || (settings.SAVE_TRACK_TO_GPX.get() && ctx.getRoutingHelper().isFollowingMode())) {
|
||||
isRecording = true;
|
||||
}
|
||||
} else if (ctx.getAppCustomization().saveGPXPoint(location)) {
|
||||
|
|
Loading…
Reference in a new issue