소스 검색

Fixes backwards indicator

main
Eric Amodio 6 년 전
부모
커밋
58cd5c1996
2개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. +2
    -2
      src/views/branchNode.ts
  2. +2
    -2
      src/views/statusNode.ts

+ 2
- 2
src/views/branchNode.ts 파일 보기

@ -65,10 +65,10 @@ export class BranchNode extends ExplorerRefNode {
if (this.branch.state.ahead || this.branch.state.behind) {
if (this.branch.state.behind) {
iconSuffix = '-yellow';
iconSuffix = '-red';
}
if (this.branch.state.ahead) {
iconSuffix = this.branch.state.behind ? '-red' : '-green';
iconSuffix = this.branch.state.behind ? '-yellow' : '-green';
}
}
}

+ 2
- 2
src/views/statusNode.ts 파일 보기

@ -83,10 +83,10 @@ export class StatusNode extends ExplorerNode {
hasChildren = true;
if (status.state.behind) {
iconSuffix = '-yellow';
iconSuffix = '-red';
}
if (status.state.ahead) {
iconSuffix = status.state.behind ? '-red' : '-green';
iconSuffix = status.state.behind ? '-yellow' : '-green';
}
}
}

불러오는 중...
취소
저장