config rotation + redundancy for layout
also load default layout if it fails to load
This commit is contained in:
parent
e16fdf0626
commit
6f2c9535bc
3 changed files with 67 additions and 9 deletions
|
|
@ -2786,7 +2786,7 @@ void FurnaceGUI::editOptions(bool topMenu) {
|
|||
void FurnaceGUI::toggleMobileUI(bool enable, bool force) {
|
||||
if (mobileUI!=enable || force) {
|
||||
if (!mobileUI && enable) {
|
||||
if (!ImGui::SaveIniSettingsToDisk(finalLayoutPath)) {
|
||||
if (!ImGui::SaveIniSettingsToDisk(finalLayoutPath,true)) {
|
||||
reportError(fmt::sprintf("could NOT save layout! %s",strerror(errno)));
|
||||
}
|
||||
}
|
||||
|
|
@ -2798,8 +2798,9 @@ void FurnaceGUI::toggleMobileUI(bool enable, bool force) {
|
|||
fileDialog->mobileUI=true;
|
||||
} else {
|
||||
ImGui::GetIO().IniFilename=NULL;
|
||||
if (!ImGui::LoadIniSettingsFromDisk(finalLayoutPath)) {
|
||||
if (!ImGui::LoadIniSettingsFromDisk(finalLayoutPath,true)) {
|
||||
reportError(fmt::sprintf("could NOT load layout! %s",strerror(errno)));
|
||||
ImGui::LoadIniSettingsFromMemory(defaultLayout);
|
||||
}
|
||||
ImGui::GetIO().ConfigFlags&=~ImGuiConfigFlags_InertialScrollEnable;
|
||||
ImGui::GetIO().ConfigFlags&=~ImGuiConfigFlags_NoHoverColors;
|
||||
|
|
@ -5029,7 +5030,7 @@ bool FurnaceGUI::loop() {
|
|||
ImGui::CloseCurrentPopup();
|
||||
if (!mobileUI) {
|
||||
ImGui::LoadIniSettingsFromMemory(defaultLayout);
|
||||
if (!ImGui::SaveIniSettingsToDisk(finalLayoutPath)) {
|
||||
if (!ImGui::SaveIniSettingsToDisk(finalLayoutPath,true)) {
|
||||
reportError(fmt::sprintf("could NOT save layout! %s",strerror(errno)));
|
||||
}
|
||||
}
|
||||
|
|
@ -5913,7 +5914,7 @@ bool FurnaceGUI::init() {
|
|||
|
||||
void FurnaceGUI::commitState() {
|
||||
if (!mobileUI) {
|
||||
if (!ImGui::SaveIniSettingsToDisk(finalLayoutPath)) {
|
||||
if (!ImGui::SaveIniSettingsToDisk(finalLayoutPath,true)) {
|
||||
reportError(fmt::sprintf("could NOT save layout! %s",strerror(errno)));
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue