From 8c14fe2bd9fe8c9f4e97f1cabf4c22ec7cb1d6cb Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Wed, 19 Dec 2018 12:55:25 +0800 Subject: [PATCH] RepoStatusPopover.bjs RepoStatusPopover.vala --- RepoStatusPopover.bjs | 2 +- RepoStatusPopover.vala | 13 +++++-------- 2 files changed, 6 insertions(+), 9 deletions(-) diff --git a/RepoStatusPopover.bjs b/RepoStatusPopover.bjs index 9e38bbc3..de5fd846 100644 --- a/RepoStatusPopover.bjs +++ b/RepoStatusPopover.bjs @@ -148,7 +148,7 @@ }, { "listeners" : { - "button_press_event" : "() => {\n \n \n GitMonitor.gitmonitor.stop();\n _this.repo.git({ \"pull\" , \"--all\" });\n _this.repo.loadStatus();\n GitMonitor.gitmonitor.start();\n _this.diff_view.el.get_buffer().set_text(_this.repo.git_diff);\n _this.status_view.el.get_buffer().set_text(_this.repo.git_status);\n Clones.singleton().reposStore.load();\n \n _this.el.hide();\n return false;\n}" + "button_press_event" : "() => {\n \n\n\n Clones.singleton().el.hide();\n \n _this.el.hide();\n Ticket.singleton().show();\n \n return false;\n}" }, "label" : "Create Ticket", "* pack" : "add", 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; }); } -- 2.39.2