This commit is contained in:
Paul Schneider 2017-03-09 22:25:43 +01:00
commit 33981dcec3

View file

@ -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;