how to disable settings reading/writing? imgui.ini still written after imgui.get_io().set_ini_filename("") #421
-
|
Hey been trying a number of things and can't seem to figure out how to disable reading/writing the ini settings def main():
runner_params = immapp.RunnerParams()
runner_params.callbacks.post_init = lambda: imgui.get_io().set_ini_filename("")
runner_params.ini_filename = ""
runner_params.ini_filename_use_app_window_title = False
runner_params.callbacks.show_gui = my_gui_functiion
runner_params.app_window_params.window_title = APPLICATION_NAME
runner_params.app_window_params.restore_previous_geometry = False
runner_params.app_window_params.window_geometry.size = (1400, 950)
add_ons_params = immapp.AddOnsParams()
add_ons_params.with_implot = True
add_ons_params.with_implot3d = True
add_ons_params.with_markdown = True
add_ons_params.with_node_editor = True
add_ons_params.with_tex_inspect = True
immapp.run(
runner_params=runner_params,
add_ons_params=add_ons_params,
)This still results in In |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Hi, Sorry for answering with delay, I was on holiday. This will be available in the next release (in one or two months). In the meantime you can download binary wheels at |
Beta Was this translation helpful? Give feedback.
Hi,
Sorry for answering with delay, I was on holiday.
Actually, it was not possible to disable this. I just fixed it inside this commit:
fb91852
This will be available in the next release (in one or two months). In the meantime you can download binary wheels at
https://github.com/pthom/imgui_bundle/actions/runs/20879238774