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:
gambas 2021-12-02 21:28:40 +01:00
parent 70505e42c6
commit 0b374be352

View file

@ -770,7 +770,7 @@ Public Sub GetBranchColor(sBranch As String) As Integer
Select Case sBranch
Case "master"
Case "master", ""
iColor = &H606060
Case Else