Added ability to save last used data from competition overlay for next run.

This commit is contained in:
2025-05-22 12:12:52 -04:00
parent 08fa488dac
commit 552fe4e162
4 changed files with 21 additions and 14 deletions

View File

@@ -40,10 +40,10 @@ namespace osrs_toolbox
get { return _hideOtherPlayers; }
set { SetProperty(ref _hideOtherPlayers, value, nameof(HideOtherPlayers)); }
}
public bool HideZeroKC
public bool HideZeroGained
{
get { return _hideZeroKC; }
set { SetProperty(ref _hideZeroKC, value, nameof(HideZeroKC)); }
set { SetProperty(ref _hideZeroKC, value, nameof(HideZeroGained)); }
}
public ICommand Update

View File

@@ -39,10 +39,10 @@ namespace osrs_toolbox
get { return _hideOtherPlayers; }
set { SetProperty(ref _hideOtherPlayers, value, nameof(HideOtherPlayers)); }
}
public bool HideZeroKC
public bool HideZeroGained
{
get { return _hideZeroKC; }
set { SetProperty(ref _hideZeroKC, value, nameof(HideZeroKC)); }
set { SetProperty(ref _hideZeroKC, value, nameof(HideZeroGained)); }
}
public ICommand ToggleCompetitionOverlay