Page 1 of 1

Flashbutton for Slider in Level/Submaster modus

Posted: Wed May 24, 2017 7:05 am
by Chris De Rock
I think it would be cool to have a flashbutton for level- and submaster-mode. it is easy to implement by adding a button to the widget and add two slots like this:
void VCSlider::flashPressed()
{
valBeforeFlash = sliderValue();
setSliderValue(m_levelHighLimit);
}

void VCSlider::flashReleased()
{
setSliderValue(valBeforeFlash);
}

Re: Flashbutton for Slider in Level/Submaster modus

Posted: Wed May 24, 2017 7:38 am
by siegmund
Indeed this is very useful but since it is even more easy to achieve already with the help of the loopback plugin I don't think it should become part of the sliders.

Re: Flashbutton for Slider in Level/Submaster modus

Posted: Wed May 24, 2017 7:50 am
by Chris De Rock
true. but its easier to handle. (you can hide the button via the properties by default if you want to keep the standard look)

Re: Flashbutton for Slider in Level/Submaster modus

Posted: Wed Jun 14, 2017 8:26 pm
by volmar
I will love this. The loopback still sounds too complicated to me.