From a9d033f00f44c23a4b6bc30832bea0edc42b819d Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Wed, 19 Dec 2018 13:24:05 +0800 Subject: [PATCH] RepoStatusPopover.bjs RepoStatusPopover.vala --- RepoStatusPopover.bjs | 14 +++++++++----- RepoStatusPopover.vala | 6 +++++- 2 files changed, 14 insertions(+), 6 deletions(-) diff --git a/RepoStatusPopover.bjs b/RepoStatusPopover.bjs index 29da2d82..5e7f3273 100644 --- a/RepoStatusPopover.bjs +++ b/RepoStatusPopover.bjs @@ -112,10 +112,11 @@ "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}" }, "label" : "Stash Changes", - "* ctor" : "", + "* ctor" : "new Gtk.ToolButton(new Gtk.Image.from_icon_name (\"gtk-undo\", Gtk.IconSize.SMALL_TOOLBAR), null);", "xtype" : "ToolButton", "* pack" : "add", - "$ xns" : "Gtk" + "$ xns" : "Gtk", + "bool is_important" : true }, { "listeners" : { @@ -125,7 +126,8 @@ "* ctor" : "new Gtk.ToolButton(new Gtk.Image.from_icon_name (\"gtk-save\", Gtk.IconSize.SMALL_TOOLBAR), null);", "* pack" : "add", "xtype" : "ToolButton", - "$ xns" : "Gtk" + "$ xns" : "Gtk", + "bool is_important" : true }, { "listeners" : { @@ -135,7 +137,8 @@ "* ctor" : "new Gtk.ToolButton(new Gtk.Image.from_icon_name (\"gtk-add\", Gtk.IconSize.SMALL_TOOLBAR), null);", "xtype" : "ToolButton", "* pack" : "add", - "$ xns" : "Gtk" + "$ xns" : "Gtk", + "bool is_important" : true }, { "listeners" : { @@ -145,7 +148,8 @@ "* ctor" : "new Gtk.ToolButton(new Gtk.Image.from_icon_name (\"gtk-revert-to-saved\", Gtk.IconSize.SMALL_TOOLBAR), null);", "* pack" : "add", "xtype" : "ToolButton", - "$ xns" : "Gtk" + "$ xns" : "Gtk", + "bool is_important" : true }, { "listeners" : { diff --git a/RepoStatusPopover.vala b/RepoStatusPopover.vala index 83683cbc..19fb5790 100644 --- a/RepoStatusPopover.vala +++ b/RepoStatusPopover.vala @@ -413,12 +413,13 @@ public class RepoStatusPopover : Object public Xcls_ToolButton14(RepoStatusPopover _owner ) { _this = _owner; - this.el = ; + this.el = new Gtk.ToolButton(new Gtk.Image.from_icon_name ("gtk-undo", Gtk.IconSize.SMALL_TOOLBAR), null);; // my vars (dec) // set gobject values this.el.label = "Stash Changes"; + this.el.is_important = true; //listeners this.el.button_press_event.connect( () => { @@ -458,6 +459,7 @@ public class RepoStatusPopover : Object // set gobject values this.el.label = "Commit Changes"; + this.el.is_important = true; //listeners this.el.button_press_event.connect( () => { @@ -496,6 +498,7 @@ public class RepoStatusPopover : Object // set gobject values this.el.label = "Create Branch / Start ticket"; + this.el.is_important = true; //listeners this.el.button_press_event.connect( () => { @@ -529,6 +532,7 @@ public class RepoStatusPopover : Object // set gobject values this.el.label = "Reset / clear changes"; + this.el.is_important = true; //listeners this.el.button_press_event.connect( () => { -- 2.39.2