ソースを参照

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';
}
}
}

読み込み中…
キャンセル
保存