From 343e720a2e72708e81aa870ccd7966a9dd5981a9 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Mon, 14 Aug 2017 10:43:28 +0800 Subject: [PATCH] GitMonitor.vala --- GitMonitor.vala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GitMonitor.vala b/GitMonitor.vala index f5e6fc7c..f6d59152 100644 --- a/GitMonitor.vala +++ b/GitMonitor.vala @@ -186,14 +186,14 @@ public class GitMonitor : Monitor this.paused = true; // what does this do to the old one... this.queue = new Array (); - StatusIconA.statusicon.set_from_stock( Gtk.Stock.MEDIA_PAUSE ); + StatusIconA.statusicon.pause() } public new void resume () { this.paused = false; this.queue = new Array (); - StatusIconA.statusicon.set_from_stock( Gtk.Stock.MEDIA_PLAY ); + StatusIconA.statusicon.resume(); } -- 2.39.2