-
Notifications
You must be signed in to change notification settings - Fork 78
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
im_file_dialog will not work when using a pure python backend, or when using HelloImGui::Run (use portable-file-dialogs instead) #294
Comments
Hi,
|
ok, I had already done this as a placeholder, good to know it's a better solution and doesn't need replacing! |
The reason for the failure is: The user of ImFileDialog (or im_file_dialog in Python) needs to provide an implementation for a function "CreateTexture" that transfers pixel data to the GPU.
Solution: use portable-file-dialogs instead |
Hi, I am attempting to add
im_file_dialog
to my app but I am running in to an error when following the example code indemo_widgets.py
. Once I have actually created the dialog, the next call tolfd.FileDialog.instance().is_done()
errors out with abad_function_call
exception.I am using an
imgui_bundle
wheel downloaded from the Github CI dated Dec 5 with Python 3.12.8 on Linux.Here's some code to reproduce.
The text was updated successfully, but these errors were encountered: