We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6b99ac commit c011caeCopy full SHA for c011cae
dearpygui_ext/logger.py
@@ -20,7 +20,7 @@ def __init__(self, parent=None):
20
21
dpg.add_input_text(label="Filter", callback=lambda sender: dpg.set_value(self.filter_id, dpg.get_value(sender)),
22
parent=self.window_id)
23
- 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)
24
self.filter_id = dpg.add_filter_set(parent=self.child_id)
25
26
with dpg.theme() as self.trace_theme:
0 commit comments