Skip to content

Commit

Permalink
fix softlock
Browse files Browse the repository at this point in the history
  • Loading branch information
themanyfaceddemon committed Aug 24, 2024
1 parent 1f8649c commit 2898a42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Code/gui/main_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def setup(self):
self.create_warning_window()

def create_warning_window(self):
with dpg.window(label="Warning", modal=True, tag="warning_window"):
with dpg.window(label="Warning", modal=True, tag="warning_window", no_title_bar=True):
dpg.add_text(loc.get_string("main_text_warning_window"))
dpg.add_button(label=loc.get_string("yes_warning_window"), callback=self.on_yes)
dpg.add_button(label=loc.get_string("no_warning_window"), callback=self.on_no)
Expand Down

0 comments on commit 2898a42

Please sign in to comment.