diff options
author | patrickalbie <[email protected]> | 2015-11-23 13:51:32 +0000 |
---|---|---|
committer | Monsta <[email protected]> | 2015-11-25 17:11:44 +0300 |
commit | c7178b639cce576a4e430e884cae2ebd5fc78991 (patch) | |
tree | 5365732cea3869e8cf69a0c8debde41d8bd73aa6 | |
parent | c6e5ccfd138e38117ac69b833629e107f957fa74 (diff) | |
download | mate-indicator-applet-c7178b639cce576a4e430e884cae2ebd5fc78991.tar.bz2 mate-indicator-applet-c7178b639cce576a4e430e884cae2ebd5fc78991.tar.xz |
allow volume change with mouse scroll over sound indicator's icon
closes https://github.com/mate-desktop/mate-indicator-applet/issues/15
closes https://github.com/mate-desktop/mate-indicator-applet/pull/16
-rw-r--r-- | src/applet-main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/applet-main.c b/src/applet-main.c index 30449a8..beeb2eb 100644 --- a/src/applet-main.c +++ b/src/applet-main.c @@ -251,6 +251,7 @@ entry_scrolled (GtkWidget *menuitem, GdkEventScroll *event, gpointer data) g_signal_emit_by_name (io, "scroll", 1, event->direction); g_signal_emit_by_name (io, "scroll-entry", entry, 1, event->direction); + g_signal_emit_by_name (io, INDICATOR_OBJECT_SIGNAL_ENTRY_SCROLLED, entry, 1, event->direction); return FALSE; } |