mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-21 10:01:27 -07:00
43 lines
1.5 KiB
C#
43 lines
1.5 KiB
C#
namespace Bloxstrap.UI.ViewModels.Settings
|
|
{
|
|
public class BehaviourViewModel : NotifyPropertyChangedViewModel
|
|
{
|
|
private string _oldPlayerVersionGuid = "";
|
|
private string _oldStudioVersionGuid = "";
|
|
|
|
public bool ConfirmLaunches
|
|
{
|
|
get => App.Settings.Prop.ConfirmLaunches;
|
|
set => App.Settings.Prop.ConfirmLaunches = value;
|
|
}
|
|
|
|
public bool ForceRobloxLanguage
|
|
{
|
|
get => App.Settings.Prop.ForceRobloxLanguage;
|
|
set => App.Settings.Prop.ForceRobloxLanguage = value;
|
|
}
|
|
|
|
public bool ForceRobloxReinstallation
|
|
{
|
|
// wouldnt it be better to check old version guids?
|
|
// what about fresh installs?
|
|
get => String.IsNullOrEmpty(App.State.Prop.Player.VersionGuid) && String.IsNullOrEmpty(App.State.Prop.Studio.VersionGuid);
|
|
set
|
|
{
|
|
if (value)
|
|
{
|
|
_oldPlayerVersionGuid = App.State.Prop.Player.VersionGuid;
|
|
_oldStudioVersionGuid = App.State.Prop.Studio.VersionGuid;
|
|
App.State.Prop.Player.VersionGuid = "";
|
|
App.State.Prop.Studio.VersionGuid = "";
|
|
}
|
|
else
|
|
{
|
|
App.State.Prop.Player.VersionGuid = _oldPlayerVersionGuid;
|
|
App.State.Prop.Studio.VersionGuid = _oldStudioVersionGuid;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|