Flashbutton for Slider in Level/Submaster modus

Request a feature that you would like to see in QLC+.
Explain in details why you would need it and which is your usage case.
Post Reply
Chris De Rock
Posts: 103
Joined: Tue Apr 14, 2015 6:54 am
Real Name:

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);
}
siegmund
Posts: 703
Joined: Mon Nov 02, 2015 11:03 am
Location: Germany
Real Name: Lukas

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.
Chris De Rock
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)
volmar
Posts: 19
Joined: Sun Jan 03, 2016 4:34 pm
Real Name: Daniele

I will love this. The loopback still sounds too complicated to me.
Post Reply