Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit a3f270f

Browse files
committed
Make IsBusy setter protected.
1 parent 49f5618 commit a3f270f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/GitHub.App/ViewModels/DialogViewModelBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public string Title
4646
public bool IsBusy
4747
{
4848
get { return isBusy; }
49-
set { this.RaiseAndSetIfChanged(ref isBusy, value); }
49+
protected set { this.RaiseAndSetIfChanged(ref isBusy, value); }
5050
}
5151

5252
/// <inheritdoc/>

0 commit comments

Comments
 (0)