This is an automated email from the git hooks/post-receive script.

ncopa pushed a 
commit to branch 
master
in repository panel-plugins/xfce4-stopwatch-plugin.

commit f923715e150e2d979fa85ea8de54311afd22f6f8
Author: Natanael Copa <nc...@alpinelinux.org>
Date:   Thu Mar 14 12:03:02 2019 +0100

    Add "reset" via context menu
---
 panel-plugin/stopwatch.vala | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/panel-plugin/stopwatch.vala b/panel-plugin/stopwatch.vala
index f51a876..2ec1196 100644
--- a/panel-plugin/stopwatch.vala
+++ b/panel-plugin/stopwatch.vala
@@ -209,6 +209,13 @@ public class StopwatchPlugin : Xfce.PanelPlugin {
                        box.set_orientation (orientation);
                });
 
+               var item = new Gtk.MenuItem.with_label (_("Reset"));
+               item.activate.connect (() => {
+                       timerButton.reset ();
+               });
+               item.show_all ();
+               menu_insert_item (item);
+
                timerButton = new TimerButton (timer);
                this.add_action_widget (timerButton);
                box.add (timerButton);

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
_______________________________________________
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits

Reply via email to