feat: fully working async install

This commit is contained in:
Yannik Schmidt
2025-04-13 00:18:02 +02:00
parent 8e9e4db3fa
commit 4e9b85ee6d
6 changed files with 106 additions and 32 deletions

View File

@@ -34,6 +34,7 @@ db = None # app data-backend (i.e. LocalFS or FTP)
CONFIG_FILE = "gamevault_config.json"
def close_input_window(input_window):
'''Close the config window and save the settings'''
@@ -188,7 +189,7 @@ def load_main():
app.title("Lan Vault: Overview")
if not infowidget_window:
infowidget_window = infowidget.ProgressBarApp(app)
infowidget_window = infowidget.ProgressBarApp(app, data_backend=db)
# navbar should not expand when window is resized
app.grid_rowconfigure(0, weight=0)