mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-14 17:21:28 -07:00
23 lines
615 B
C#
23 lines
615 B
C#
using Bloxstrap.UI.ViewModels.Settings;
|
|
using System.Windows;
|
|
|
|
namespace Bloxstrap.UI.Elements.Settings.Pages
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for FastFlagEditorScamWarningPage.xaml
|
|
/// </summary>
|
|
public partial class FastFlagEditorScamWarningPage
|
|
{
|
|
public FastFlagEditorScamWarningPage() : base(typeof(FastFlagEditorPage))
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
protected override void ContinueCallback()
|
|
{
|
|
App.State.Prop.ShowFFlagEditorWarnings = false;
|
|
App.State.Save(); // should we be force saving?
|
|
}
|
|
}
|
|
}
|