X-Git-Url: http://git.roojs.org/?p=gitlive;a=blobdiff_plain;f=RepoStatusPopover.vala;h=71ee6fa2ecdd633e8487edcbf36786cad1b496ea;hp=3a641b2afee7a2394e3e5f5a03091e0dcc0bee3d;hb=8c14fe2bd9fe8c9f4e97f1cabf4c22ec7cb1d6cb;hpb=5ee97662e47d9994ce0357eae234c88ed6c437cd diff --git a/RepoStatusPopover.vala b/RepoStatusPopover.vala index 3a641b2a..71ee6fa2 100644 --- a/RepoStatusPopover.vala +++ b/RepoStatusPopover.vala @@ -583,16 +583,13 @@ public class RepoStatusPopover : Object //listeners this.el.button_press_event.connect( () => { - - GitMonitor.gitmonitor.stop(); - _this.repo.git({ "pull" , "--all" }); - _this.repo.loadStatus(); - GitMonitor.gitmonitor.start(); - _this.diff_view.el.get_buffer().set_text(_this.repo.git_diff); - _this.status_view.el.get_buffer().set_text(_this.repo.git_status); - Clones.singleton().reposStore.load(); + + + Clones.singleton().el.hide(); _this.el.hide(); + Ticket.singleton().show(); + return false; }); }