tIs there any way to add labels to PopupSliderMenuItem? what i want is to have something like label PopupSliderMenuItem label in one row. Or if it is posible (and how?) to draw sliders vertical then
label
slider
label
a sample of code:
for(f=0;f<this.volumes.length;f++) {
this.labels[f]=new St.Label({ text: this.freq[f]});
this.sliders[f]=new PopupMenu.PopupSliderMenuItem(this.volumes[f]/100);
this.sliders[f].connect('value-changed', Lang.bind(this, this._onSlider));
this.menu.addMenuItem(this.sliders[f]);
//how can i add each label of labels[] before and after each slider
}
So i manage to solve(patch it from other scripts) my own dilemma