Skip to content

Commit

Permalink
experiment for issue #35
Browse files Browse the repository at this point in the history
  • Loading branch information
AmberSahdev committed Jan 7, 2025
1 parent ca10087 commit 7789be7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion app/ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,11 @@ def __init__(self):
settings_dict = settings.get_dict()
theme = settings_dict.get('theme', 'superhero')

super().__init__(themename=theme)
try:
super().__init__(themename=theme)
except:
super().__init__() # https://github.com/AmberSahdev/Open-Interface/issues/35

self.title('Open Interface')
window_width = 420
window_height = 250
Expand Down

0 comments on commit 7789be7

Please sign in to comment.