Skip to content

Commit d919cb5

Browse files
committed
Undo SC refresh disabling
1 parent 174bc61 commit d919cb5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

RetailCoder.VBE/UI/SourceControl/SourceControlViewViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public SourceControlViewViewModel(
6060
_initRepoCommand = new DelegateCommand(_ => InitRepo());
6161
_openRepoCommand = new DelegateCommand(_ => OpenRepo());
6262
_cloneRepoCommand = new DelegateCommand(_ => ShowCloneRepoGrid());
63-
_refreshCommand = new DelegateCommand(_ => Refresh(), _ => _state.IsDirty());
63+
_refreshCommand = new DelegateCommand(_ => Refresh());
6464
_dismissErrorMessageCommand = new DelegateCommand(_ => DismissErrorMessage());
6565
_showFilePickerCommand = new DelegateCommand(_ => ShowFilePicker());
6666
_loginGridOkCommand = new DelegateCommand(_ => CloseLoginGrid(), text => !string.IsNullOrEmpty((string)text));

0 commit comments

Comments
 (0)