We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc02070 commit 21b0d24Copy full SHA for 21b0d24
2 files changed
src/hello_imgui/impl/runner_params.cpp
@@ -21,6 +21,8 @@ namespace HelloImGui
21
r.fpsIdling.fpsIdle = self.fpsIdle;
22
r.fpsIdling.enableIdling = self.enableIdling;
23
24
+ r.iniDisable = self.iniDisable;
25
+
26
return r;
27
}
28
src/hello_imgui/runner_params.h
@@ -444,6 +444,10 @@ struct SimpleRunnerParams
444
// Useful especially when running from notebooks to keep the app visible above the browser.
445
bool topMost = false;
446
447
+ // `iniDisable`: _bool, default=false_.
448
+ // If true, do not save or load any settings to or from an ini file.
449
+ bool iniDisable = false;
450
451
RunnerParams ToRunnerParams() const;
452
};
453
// @@md
0 commit comments