From b0927b579e39c2740360b0b4a78481c78078cdf2 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Wed, 19 Dec 2018 13:19:26 +0800 Subject: [PATCH] RepoStatusPopover.bjs RepoStatusPopover.vala --- RepoStatusPopover.bjs | 1 + RepoStatusPopover.vala | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/RepoStatusPopover.bjs b/RepoStatusPopover.bjs index e677d9ca..66ac7759 100644 --- a/RepoStatusPopover.bjs +++ b/RepoStatusPopover.bjs @@ -139,6 +139,7 @@ "button_press_event" : "() => {\n \n \n GitMonitor.gitmonitor.stop();\n _this.repo.git({ \"reset\" , \"--hard\" });\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" : "Reset / clear changes", + "* ctor" : "new Gtk.ToolButton(new Gtk.Image.from_icon_name (\"gtk-goto-top\", Gtk.IconSize.SMALL_TOOLBAR), null);", "* pack" : "add", "xtype" : "ToolButton", "$ xns" : "Gtk" diff --git a/RepoStatusPopover.vala b/RepoStatusPopover.vala index 07753d31..b2e57769 100644 --- a/RepoStatusPopover.vala +++ b/RepoStatusPopover.vala @@ -520,11 +520,12 @@ public class RepoStatusPopover : Object public Xcls_ToolButton17(RepoStatusPopover _owner ) { _this = _owner; - this.el = new Gtk.ToolButton( null, "Reset / clear changes" ); + this.el = new Gtk.ToolButton(new Gtk.Image.from_icon_name ("gtk-goto-top", Gtk.IconSize.SMALL_TOOLBAR), null);; // my vars (dec) // set gobject values + this.el.label = "Reset / clear changes"; //listeners this.el.button_press_event.connect( () => { -- 2.39.2