From 5c25497e16e185be7b131755e15f09db41f1c0ce Mon Sep 17 00:00:00 2001 From: Adel Gadllah Date: Sun, 23 Jun 2013 23:59:24 +0200 Subject: [PATCH] PopupSliderMenuItem: Add scroll method This fixes fallout from 847cb5b972a04e7dc21c362a https://bugzilla.gnome.org/show_bug.cgi?id=702849 --- js/ui/popupMenu.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/js/ui/popupMenu.js b/js/ui/popupMenu.js index 3332fe972..28d1d26b7 100644 --- a/js/ui/popupMenu.js +++ b/js/ui/popupMenu.js @@ -527,6 +527,10 @@ const PopupSliderMenuItem = new Lang.Class({ get value() { return this._slider.value; + }, + + scroll: function (event) { + this._slider.scroll(event); } });