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);
}
Flashbutton for Slider in Level/Submaster modus
-
- Posts: 103
- Joined: Tue Apr 14, 2015 6:54 am
- Real Name:
true. but its easier to handle. (you can hide the button via the properties by default if you want to keep the standard look)