mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-23 13:05:11 +00:00
GUI: remember extraChannelButtons' state
This commit is contained in:
parent
4a225c9c64
commit
ed3b0610d3
1 changed files with 2 additions and 0 deletions
|
@ -5470,6 +5470,7 @@ bool FurnaceGUI::init() {
|
|||
waveSigned=e->getConfBool("waveSigned",false);
|
||||
waveGenVisible=e->getConfBool("waveGenVisible",false);
|
||||
waveEditStyle=e->getConfInt("waveEditStyle",0);
|
||||
extraChannelButtons=e->getConfInt("extraChannelButtons",0);
|
||||
lockLayout=e->getConfBool("lockLayout",false);
|
||||
#ifdef IS_MOBILE
|
||||
fullScreen=true;
|
||||
|
@ -5884,6 +5885,7 @@ void FurnaceGUI::commitState() {
|
|||
e->setConf("waveSigned",waveSigned);
|
||||
e->setConf("waveGenVisible",waveGenVisible);
|
||||
e->setConf("waveEditStyle",waveEditStyle);
|
||||
e->setConf("extraChannelButtons",extraChannelButtons);
|
||||
e->setConf("lockLayout",lockLayout);
|
||||
e->setConf("fullScreen",fullScreen);
|
||||
e->setConf("mobileUI",mobileUI);
|
||||
|
|
Loading…
Reference in a new issue