Skip to content

Commit

Permalink
Remove unneeded transactions calls
Browse files Browse the repository at this point in the history
  • Loading branch information
Ruben2776 committed Oct 8, 2024
1 parent 317b6d5 commit 556e7d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/PicView.Avalonia/ViewModels/ViewModelBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1565,15 +1565,15 @@ public string? HideBottomGallery
set => this.RaiseAndSetIfChanged(ref _hideBottomGallery, value);
}

private string? _loopingDisabled = TranslationHelper.Translation.LoopingDisabled;
private string? _loopingDisabled;

public string? LoopingDisabled
{
get => _loopingDisabled;
set => this.RaiseAndSetIfChanged(ref _loopingDisabled, value);
}

private string? _loopingEnabled = TranslationHelper.Translation.LoopingEnabled;
private string? _loopingEnabled;

public string? LoopingEnabled
{
Expand Down

0 comments on commit 556e7d4

Please sign in to comment.