diff --git a/Bloxstrap/ViewModels/ModsViewModel.cs b/Bloxstrap/ViewModels/ModsViewModel.cs index 52d21e5..fa17d60 100644 --- a/Bloxstrap/ViewModels/ModsViewModel.cs +++ b/Bloxstrap/ViewModels/ModsViewModel.cs @@ -114,6 +114,12 @@ namespace Bloxstrap.ViewModels set => App.FastFlags.SetValue("FFlagFixGraphicsQuality", value ? "True" : null); } + public bool MobileLuaAppInterfaceEnabled + { + get => App.FastFlags.GetValue("FFlagLuaAppSystemBar") == "False"; + set => App.FastFlags.SetValue("FFlagLuaAppSystemBar", value ? "False" : null); + } + public bool DisableFullscreenOptimizationsEnabled { get => App.Settings.Prop.DisableFullscreenOptimizations; diff --git a/Bloxstrap/Views/Pages/ModsPage.xaml b/Bloxstrap/Views/Pages/ModsPage.xaml index c6360f4..0fe918e 100644 --- a/Bloxstrap/Views/Pages/ModsPage.xaml +++ b/Bloxstrap/Views/Pages/ModsPage.xaml @@ -102,6 +102,7 @@ + @@ -149,6 +150,15 @@ + + + + + + + + +