From 3f1338822ed408a4aba61e1810f8571c226ed495 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Wed, 19 Dec 2018 13:55:49 +0800 Subject: [PATCH] RepoStatusPopover.bjs RepoStatusPopover.vala --- RepoStatusPopover.bjs | 2 +- RepoStatusPopover.vala | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/RepoStatusPopover.bjs b/RepoStatusPopover.bjs index 77672f7c..08c53b54 100644 --- a/RepoStatusPopover.bjs +++ b/RepoStatusPopover.bjs @@ -53,7 +53,7 @@ }, { "listeners" : { - "clicked" : "() => {\n _this.el.hide();\n _this.repo.git({ \"commit\" , \"-a\" ,\"-m\", \"Uncommited changes synced\" });\n _this.repo.push();\n _this.repo.loadStatus();\n \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 \n\n Clones.singleton().reposStore.load();\n \n}" + "clicked" : "() => {\n _this.el.hide();\n GitMonitor.gitmonitor.stop();\n _this.repo.git({ \"commit\" , \"-a\" ,\"-m\", \"Uncommited changes synced\" });\n _this.repo.push();\n _this.repo.loadStatus();\n \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 \n\n Clones.singleton().reposStore.load();\n GitMonitor.gitmonitor.start();\n \n}" }, "label" : "Commit Changes", "* ctor" : "new Gtk.ToolButton(new Gtk.Image.from_icon_name (\"gtk-save\", Gtk.IconSize.SMALL_TOOLBAR), null);", diff --git a/RepoStatusPopover.vala b/RepoStatusPopover.vala index 1a226a8d..d48f6185 100644 --- a/RepoStatusPopover.vala +++ b/RepoStatusPopover.vala @@ -243,6 +243,7 @@ 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(); @@ -252,6 +253,7 @@ public class RepoStatusPopover : Object Clones.singleton().reposStore.load(); + GitMonitor.gitmonitor.start(); }); } -- 2.39.2