LiveMix

The program don’t start. It return a SIGSEGV – Segmentation fault error. I correct add a int cast to variable knob_width in file Fader.cpp. I change the line 439 of file Fader.cpp: before painter.drawPixmap(QRect((width() – knob_width) / 2, knob_y – knob_height, knob_width, knob_height), m_knob, QRect(0, 0, knob_width, knob_height)); after painter.drawPixmap(QRect((width() – (int)knob_width) / 2, knob_y…