GUI: add double-click to toggle solo

closes #33
This commit is contained in:
tildearrow 2022-01-20 02:28:55 -05:00
parent 86f0ec45fa
commit 3954a23f3e
2 changed files with 33 additions and 7 deletions

View file

@ -187,6 +187,7 @@ class FurnaceGUI {
int audioBufSize;
int patRowsBase;
int orderRowsBase;
int soloAction;
unsigned int maxUndoSteps;
String mainFontPath;
String patFontPath;
@ -204,6 +205,7 @@ class FurnaceGUI {
audioBufSize(1024),
patRowsBase(0),
orderRowsBase(1),
soloAction(0),
maxUndoSteps(100),
mainFontPath(""),
patFontPath("") {}
@ -211,7 +213,7 @@ class FurnaceGUI {
char finalLayoutPath[4096];
int curIns, curWave, curSample, curOctave, oldRow, oldOrder, oldOrder1, editStep, exportLoops, orderEditMode, orderCursor;
int curIns, curWave, curSample, curOctave, oldRow, oldOrder, oldOrder1, editStep, exportLoops, soloChan, soloTimeout, orderEditMode, orderCursor;
bool editControlsOpen, ordersOpen, insListOpen, songInfoOpen, patternOpen, insEditOpen;
bool waveListOpen, waveEditOpen, sampleListOpen, sampleEditOpen, aboutOpen, settingsOpen;
bool mixerOpen;