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.6.2 Operating System: Windows 10
I think the title just explains the problem. Other related issues may be #1846 (for v1.6.3) and #1873 (losing status after minimizing).
Steps to reproduce the behavior:
The tree_node should respect the default_open even inside of a disabled column.
default_open
import dearpygui.dearpygui as dpg dpg.create_context() dpg.create_viewport() dpg.setup_dearpygui() with dpg.window(label="Example Window", tag="Primary"): with dpg.table(width=-1, height=-1, hideable=True): dpg.add_table_column(label="visible column") dpg.add_table_column(label="initially hidden column", enabled=False) with dpg.table_row(): with dpg.tree_node(label="Tree node", default_open=True): dpg.add_text("content") with dpg.tree_node(label="Tree node", default_open=True): dpg.add_text("content") dpg.show_viewport() dpg.set_primary_window("Primary", True) dpg.start_dearpygui() dpg.destroy_context()
The text was updated successfully, but these errors were encountered:
fix: tree node not honoring default open inside hidden column #1878
e9548a4
Fixed in next release.
Sorry, something went wrong.
No branches or pull requests
Version of Dear PyGui
Version: 1.6.2
Operating System: Windows 10
My Issue/Question
I think the title just explains the problem.
Other related issues may be #1846 (for v1.6.3) and #1873 (losing status after minimizing).
To Reproduce
Steps to reproduce the behavior:
Expected behavior
The tree_node should respect the
default_open
even inside of a disabled column.Screenshots/Video
Standalone, minimal, complete and verifiable example
The text was updated successfully, but these errors were encountered: