X-Git-Url: http://git.roojs.org/?p=gitlive;a=blobdiff_plain;f=GitRepo.vala;fp=GitRepo.vala;h=8d59f7af86bdcdcebf5d57bb9393877568fbe36b;hp=2de3ab9cad8780966d8068693b9223e71f565c1d;hb=1c3d87de49e514421b3a08bfc3d6d4a822517f98;hpb=463d9bef7c47a41870bd411d603f5642d71b0690 diff --git a/GitRepo.vala b/GitRepo.vala index 2de3ab9c..8d59f7af 100644 --- a/GitRepo.vala +++ b/GitRepo.vala @@ -338,7 +338,7 @@ public class GitRepo : Object //var rs = this.git({ "status" , "-sb" }); var cb = this.getCurrentBranch(); - this.ahead_or_behind = cb.ahead > 0 ? "A" : (cb.benind > 0 ? "B" : ""); + this.ahead_or_behind = cb.ahead > 0 ? "A" : (cb.behind > 0 ? "B" : ""); this.git_diff = this.diffWorking();