From: Alan Knowles Date: Wed, 19 Dec 2018 04:54:05 +0000 (+0800) Subject: RepoStatusPopover.bjs X-Git-Url: http://git.roojs.org/?p=gitlive;a=commitdiff_plain;h=22d38a5e650911a1fffde6188630369ed2d65735 RepoStatusPopover.bjs RepoStatusPopover.vala --- diff --git a/RepoStatusPopover.bjs b/RepoStatusPopover.bjs index e07be689..43fc3671 100644 --- a/RepoStatusPopover.bjs +++ b/RepoStatusPopover.bjs @@ -148,9 +148,9 @@ }, { "listeners" : { - "button_press_event" : "() => {\n \n \n GitMonitor.gitmonitor.stop();\n _this.repo.git({ \"stash\" , \"--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 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}" }, - "label" : "Stash Changes", + "label" : "Pull updates", "xtype" : "Button", "* pack" : "add", "$ xns" : "Gtk" diff --git a/RepoStatusPopover.vala b/RepoStatusPopover.vala index c06cc02b..69644ddb 100644 --- a/RepoStatusPopover.vala +++ b/RepoStatusPopover.vala @@ -568,14 +568,14 @@ public class RepoStatusPopover : Object // my vars (dec) // set gobject values - this.el.label = "Stash Changes"; + this.el.label = "Pull updates"; //listeners this.el.button_press_event.connect( () => { GitMonitor.gitmonitor.stop(); - _this.repo.git({ "stash" , "--all" }); + _this.repo.git({ "pull" , "--all" }); _this.repo.loadStatus(); GitMonitor.gitmonitor.start(); _this.diff_view.el.get_buffer().set_text(_this.repo.git_diff);