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? 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
Version: 2.0.0 Operating System: Windows 10
dpg.table() with header_row=False does not display adding new rows.
dpg.table() with header_row=False displays the addition of new rows.
Prior to version 2.0.0, everything worked as expected.
import time import dearpygui.dearpygui as dpg dpg.create_context() with dpg.window(tag='main_window'): with dpg.table(header_row=True, tag='test_table'): dpg.add_table_column(width_fixed=True) def test(): # Don't judge me, I was too lazy to think. while True: dpg.render_dearpygui_frame() time.sleep(1) with dpg.table_row(parent='test_table'): dpg.add_text('TEST') dpg.create_viewport(title='TEST') dpg.set_primary_window('main_window', value=True) dpg.setup_dearpygui() dpg.show_viewport() test() dpg.start_dearpygui() dpg.destroy_context()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Version of Dear PyGui
Version: 2.0.0
Operating System: Windows 10
My Issue/Question
dpg.table() with header_row=False does not display adding new rows.
To Reproduce
Expected behavior
dpg.table() with header_row=False displays the addition of new rows.
Prior to version 2.0.0, everything worked as expected.
Screenshots/Video
Standalone, minimal, complete and verifiable example
The text was updated successfully, but these errors were encountered: