Skip to content

Commit

Permalink
small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Florian-Barthel committed Jul 12, 2024
1 parent fa1fa18 commit 1789ac2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion run_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def draw_frame(self):
# Widgets.
expanded, _visible = imgui_utils.collapsing_header("Load", default=True)
imgui.indent()
self.load_widget(True)
self.load_widget(expanded)
imgui.unindent()

expanded, _visible = imgui_utils.collapsing_header("Performance", default=False)
Expand Down
2 changes: 1 addition & 1 deletion widgets/eval_widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def __call__(self, show=True):
viz = self.viz

if show:
_changed, self.text = imgui.input_text("", self.text)
_changed, self.text = imgui.input_text("##input_text", self.text)
self.format()
viz.args.eval_text = self.text

Expand Down

0 comments on commit 1789ac2

Please sign in to comment.