Added ability for competition overlay to stay on top of other windows and be clicked through.

This commit is contained in:
2025-05-22 14:23:04 -04:00
parent 555488b8bb
commit b0cb150b35
6 changed files with 32 additions and 6 deletions

View File

@@ -18,6 +18,7 @@ namespace osrs_toolbox
private bool _hideZeroKC = false;
private ICommand _toggleCompetitionOverlay;
private ICommand _toggleCompetitionOverlayClickThrough;
public int CompetitionID
{
@@ -50,5 +51,10 @@ namespace osrs_toolbox
get { return _toggleCompetitionOverlay; }
set { SetProperty(ref _toggleCompetitionOverlay, value, nameof(ToggleCompetitionOverlay)); }
}
public ICommand ToggleCompetitionOverlayClickThrough
{
get { return _toggleCompetitionOverlayClickThrough; }
set { SetProperty(ref _toggleCompetitionOverlayClickThrough, value, nameof(ToggleCompetitionOverlayClickThrough)); }
}
}
}