diff options
author | patrickalbie <[email protected]> | 2015-11-23 13:51:32 +0000 |
---|---|---|
committer | Monsta <[email protected]> | 2015-11-25 17:01:10 +0300 |
commit | 511633a11aba42edd1e5f8fe5a6938e80e5ed87a (patch) | |
tree | 5365732cea3869e8cf69a0c8debde41d8bd73aa6 /src | |
parent | c6e5ccfd138e38117ac69b833629e107f957fa74 (diff) | |
download | mate-indicator-applet-511633a11aba42edd1e5f8fe5a6938e80e5ed87a.tar.bz2 mate-indicator-applet-511633a11aba42edd1e5f8fe5a6938e80e5ed87a.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
Diffstat (limited to 'src')
-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; } |