X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=RepoStatusPopover.vala;h=1e6a3c6b67e01429b129fd774de3ac027671b214;hb=b248f5c38f652b3fc6a606a3423617451295f808;hp=efe16249956636905bfa45466fcb742985c984e0;hpb=e26bbdb19d42b210532d672a489647ece34a1a54;p=gitlive diff --git a/RepoStatusPopover.vala b/RepoStatusPopover.vala index efe16249..1e6a3c6b 100644 --- a/RepoStatusPopover.vala +++ b/RepoStatusPopover.vala @@ -585,16 +585,10 @@ public class RepoStatusPopover : Object //listeners this.el.button_press_event.connect( () => { - _this.repo.git({ "commit" , "-a" ,"-m", "Uncommited changes synced" }); - _this.repo.push(); - _this.repo.loadStatus(); - - _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(); - + Clones.singleton().el.response(-1); + MergeBranch.singleton().show(this.repo.activeTicket, null); return false; }); }