Merge branch 'master' into wip_alan_T5615_gitlive_force_all_roojs_projects
[gitlive] / RepoStatusPopover.vala
index 85ab04d..d48f618 100644 (file)
@@ -242,6 +242,8 @@ public class RepoStatusPopover : Object
 
             //listeners
             this.el.clicked.connect( () => {
+               _this.el.hide();
+                GitMonitor.gitmonitor.stop();
                _this.repo.git({ "commit" , "-a" ,"-m", "Uncommited changes synced" });
                _this.repo.push();
                _this.repo.loadStatus();
@@ -249,8 +251,9 @@ public class RepoStatusPopover : Object
                 _this.diff_view.el.get_buffer().set_text(_this.repo.git_diff);
                 _this.status_view.el.get_buffer().set_text(_this.repo.git_status);
                 
-               _this.el.hide();
+            
                Clones.singleton().reposStore.load();
+                GitMonitor.gitmonitor.start();
                 
             });
         }