Paul Schneider 9 years ago
parent 102d2114ae
commit b91512ef6a
1 changed files with 3 additions and 3 deletions

@ -48,8 +48,8 @@ namespace ZicMoove.ViewModels.UserProfile
} }
set set
{ {
MainSettings.AllowGPSUsage = value;
SetProperty<bool>(ref allowUseMyPosition, value); SetProperty<bool>(ref allowUseMyPosition, value);
MainSettings.AllowGPSUsage = value;
} }
} }
@ -62,8 +62,8 @@ namespace ZicMoove.ViewModels.UserProfile
} }
set set
{ {
MainSettings.AllowProBookingOnly = value;
SetProperty<bool>(ref allowUseMyPosition, value); SetProperty<bool>(ref allowUseMyPosition, value);
MainSettings.AllowProBookingOnly = value;
} }
} }
bool receivePushNotifications = MainSettings.PushNotifications; bool receivePushNotifications = MainSettings.PushNotifications;
@ -75,8 +75,8 @@ namespace ZicMoove.ViewModels.UserProfile
} }
set set
{ {
MainSettings.PushNotifications = value;
SetProperty<bool>(ref receivePushNotifications, value); SetProperty<bool>(ref receivePushNotifications, value);
MainSettings.PushNotifications = value;
} }
} }
private long queryCount; private long queryCount;

Loading…