PopupSliderMenuItem: Add scroll method

This fixes fallout from 847cb5b972

https://bugzilla.gnome.org/show_bug.cgi?id=702849
This commit is contained in:
Adel Gadllah 2013-06-23 23:59:24 +02:00
parent 626cbea9cf
commit 5c25497e16

View File

@ -527,6 +527,10 @@ const PopupSliderMenuItem = new Lang.Class({
get value() { get value() {
return this._slider.value; return this._slider.value;
},
scroll: function (event) {
this._slider.scroll(event);
} }
}); });