GUI: add pattern cell spacing settings

This commit is contained in:
tildearrow 2022-05-26 22:26:44 -05:00
parent 3a9ef81fe0
commit 33dc18bac2
3 changed files with 78 additions and 10 deletions

View file

@ -943,6 +943,11 @@ class FurnaceGUI {
int noMultiSystem;
int oldMacroVSlider;
int displayAllInsTypes;
int noteCellSpacing;
int insCellSpacing;
int volCellSpacing;
int effectCellSpacing;
int effectValCellSpacing;
unsigned int maxUndoSteps;
String mainFontPath;
String patFontPath;
@ -1036,6 +1041,11 @@ class FurnaceGUI {
noMultiSystem(0),
oldMacroVSlider(0),
displayAllInsTypes(0),
noteCellSpacing(0),
insCellSpacing(0),
volCellSpacing(0),
effectCellSpacing(0),
effectValCellSpacing(0),
maxUndoSteps(100),
mainFontPath(""),
patFontPath(""),
@ -1183,6 +1193,7 @@ class FurnaceGUI {
// pattern view specific
ImVec2 fourChars, threeChars, twoChars;
ImVec2 noteCellSize, insCellSize, volCellSize, effectCellSize, effectValCellSize;
SelectionPoint sel1, sel2;
int dummyRows, demandX;
int transposeAmount, randomizeMin, randomizeMax, fadeMin, fadeMax;