Version control: Don't crash when choosing a branch color if the branch name is null.
[DEVELOPMENT ENVIRONMENT] * BUG: Version control: Don't crash when choosing a branch color if the branch name is null.
This commit is contained in:
parent
70505e42c6
commit
0b374be352
1 changed files with 1 additions and 1 deletions
|
@ -770,7 +770,7 @@ Public Sub GetBranchColor(sBranch As String) As Integer
|
|||
|
||||
Select Case sBranch
|
||||
|
||||
Case "master"
|
||||
Case "master", ""
|
||||
iColor = &H606060
|
||||
|
||||
Case Else
|
||||
|
|
Loading…
Reference in a new issue