Skip to content

Commit

Permalink
fix: demo issues related to tables #1779
Browse files Browse the repository at this point in the history
  • Loading branch information
hoffstadt committed Jun 4, 2022
1 parent 503842b commit 98eef24
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DearPyGui/dearpygui/demo.py
Original file line number Diff line number Diff line change
Expand Up @@ -1605,7 +1605,7 @@ def _scroll_programmatically(sender, app_data, user_data):
borders_innerH=True, borders_outerH=True, borders_innerV=True,
borders_outerV=True, context_menu_in_body=True, row_background=True,
policy=dpg.mvTable_SizingFixedFit, height=300,
scrollY=True, clipper=True):
scrollY=True, clipper=True) as table_id:

dpg.add_table_column(label="1")
dpg.add_table_column(label="2")
Expand Down Expand Up @@ -1653,7 +1653,7 @@ def _scroll_programmatically(sender, app_data, user_data):
borders_innerH=True, borders_outerH=True, borders_innerV=True,
borders_outerV=True, context_menu_in_body=True, row_background=True,
policy=dpg.mvTable_SizingFixedFit, height=300,
scrollY=True, tag=_filter_table_id):
scrollY=True, tag=_filter_table_id) as table_id:

dpg.add_table_column(label="1")
dpg.add_table_column(label="2")
Expand Down

0 comments on commit 98eef24

Please # to comment.