newline option attempt 2
hopefully the freakin submodule wont get in
This commit is contained in:
parent
1f3f04cc8a
commit
7c9df02b2c
|
@ -33,6 +33,7 @@ right-clicking the view will display the configuration view shown above:
|
||||||
- `%v`: volume (decimal)
|
- `%v`: volume (decimal)
|
||||||
- `%V`: volume (percentage)
|
- `%V`: volume (percentage)
|
||||||
- `%b`: volume (hex)
|
- `%b`: volume (hex)
|
||||||
|
- `%l`: new line
|
||||||
- `%%`: percent sign
|
- `%%`: percent sign
|
||||||
|
|
||||||
click on OK to return to the main view.
|
click on OK to return to the main view.
|
||||||
|
|
|
@ -348,6 +348,7 @@ void FurnaceGUI::drawChanOsc() {
|
||||||
"- %v: volume (decimal)\n"
|
"- %v: volume (decimal)\n"
|
||||||
"- %V: volume (percentage)\n"
|
"- %V: volume (percentage)\n"
|
||||||
"- %b: volume (hex)\n"
|
"- %b: volume (hex)\n"
|
||||||
|
"- %l: new line\n"
|
||||||
"- %%: percent sign"
|
"- %%: percent sign"
|
||||||
);
|
);
|
||||||
ImGui::EndTooltip();
|
ImGui::EndTooltip();
|
||||||
|
@ -751,6 +752,10 @@ void FurnaceGUI::drawChanOsc() {
|
||||||
text+=fmt::sprintf("%s",noteName(noteMod,oct));
|
text+=fmt::sprintf("%s",noteName(noteMod,oct));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
case 'l': {
|
||||||
|
text+="\n";
|
||||||
|
break;
|
||||||
|
}
|
||||||
case '%':
|
case '%':
|
||||||
text+='%';
|
text+='%';
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue