File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ public List<Models.Branch> RemoteBranches
35
35
public Models . Branch SelectedBranch
36
36
{
37
37
get => _selectedBranch ;
38
- set => SetProperty ( ref _selectedBranch , value ) ;
38
+ set => SetProperty ( ref _selectedBranch , value , true ) ;
39
39
}
40
40
41
41
public Models . DealWithLocalChanges PreAction
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ public Models.Branch SelectedLocalBranch
18
18
get => _selectedLocalBranch ;
19
19
set
20
20
{
21
- if ( SetProperty ( ref _selectedLocalBranch , value ) )
21
+ if ( SetProperty ( ref _selectedLocalBranch , value , true ) )
22
22
AutoSelectBranchByRemote ( ) ;
23
23
}
24
24
}
@@ -39,7 +39,7 @@ public Models.Remote SelectedRemote
39
39
get => _selectedRemote ;
40
40
set
41
41
{
42
- if ( SetProperty ( ref _selectedRemote , value ) )
42
+ if ( SetProperty ( ref _selectedRemote , value , true ) )
43
43
AutoSelectBranchByRemote ( ) ;
44
44
}
45
45
}
@@ -56,7 +56,7 @@ public Models.Branch SelectedRemoteBranch
56
56
get => _selectedRemoteBranch ;
57
57
set
58
58
{
59
- if ( SetProperty ( ref _selectedRemoteBranch , value ) )
59
+ if ( SetProperty ( ref _selectedRemoteBranch , value , true ) )
60
60
IsSetTrackOptionVisible = value != null && _selectedLocalBranch . Upstream != value . FullName ;
61
61
}
62
62
}
You can’t perform that action at this time.
0 commit comments