GitRepo.vala
[gitlive] / GitRepo.vala
index 91feb4c..c3f7db8 100644 (file)
@@ -176,9 +176,9 @@ public class GitRepo : Object
        this.loadStatus();
     } 
     
-    public bool is_wip_branch()
+    public bool is_master_branch()
     {
-       return this.currentBranch.name.has_prefix("wip_");
+       return this.currentBranch.name == "master"
                
     }