We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Version: 1.7.1 Operating System: Ubuntu 22.04
default_open=True has no effect on collapsing header- it appears to be a regression of #1327
Steps to reproduce the behavior:
A collapsing header should be opened when window is created
import dearpygui.dearpygui as dpg dpg.create_context() dpg.create_viewport() dpg.setup_dearpygui() with dpg.window(label="Regression", width=800, height=800): dpg.add_button(label="open cp1", callback=lambda:dpg.set_value("cp", True)) dpg.add_button(label="close cp1", callback=lambda:dpg.set_value("cp", False)) with dpg.collapsing_header(label="cp1 (default close)", tag="cp"): dpg.add_text(default_value="Some text") with dpg.collapsing_header(label="cp2 (default open)", default_open=True): dpg.add_text(default_value="Some text") dpg.show_viewport() dpg.start_dearpygui() dpg.destroy_context()
The text was updated successfully, but these errors were encountered:
fix: default open not honored #1893 #1908
caa79c4
Fixed in next release.
Sorry, something went wrong.
No branches or pull requests
Version of Dear PyGui
Version: 1.7.1
Operating System: Ubuntu 22.04
My Issue/Question
default_open=True has no effect on collapsing header- it appears to be a regression of #1327
To Reproduce
Steps to reproduce the behavior:
Expected behavior
A collapsing header should be opened when window is created
Standalone, minimal, complete and verifiable example
Screenshots/Video
The text was updated successfully, but these errors were encountered: