Skip to content

Commit

Permalink
Update logger.py
Browse files Browse the repository at this point in the history
  • Loading branch information
hoffstadt authored Oct 12, 2021
1 parent a6b99ac commit c011cae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dearpygui_ext/logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def __init__(self, parent=None):

dpg.add_input_text(label="Filter", callback=lambda sender: dpg.set_value(self.filter_id, dpg.get_value(sender)),
parent=self.window_id)
self.child_id = dpg.add_child(parent=self.window_id, autosize_x=True, autosize_y=True)
self.child_id = dpg.add_child_window(parent=self.window_id, autosize_x=True, autosize_y=True)
self.filter_id = dpg.add_filter_set(parent=self.child_id)

with dpg.theme() as self.trace_theme:
Expand Down

0 comments on commit c011cae

Please sign in to comment.