fix vinyl enable

This commit is contained in:
Makesesama 2025-05-13 23:18:06 +02:00
parent 64781af68f
commit 872dbfc792
2 changed files with 2 additions and 2 deletions

View File

@ -49,4 +49,4 @@ app_config = load_config() if not load_args() else load_config(load_args())
if app_config is None: if app_config is None:
raise Exception("Config file missing") raise Exception("Config file missing")
VINYL = app_config.get("vinyl", {"enabled": False}) VINYL = app_config.get("vinyl", {"enable": False})

View File

@ -77,7 +77,7 @@ class StatusBar(Window):
) )
self.player = Player() self.player = Player()
self.vinyl = None self.vinyl = None
if VINYL["enabled"]: if VINYL["enable"]:
self.vinyl = VinylButton() self.vinyl = VinylButton()
self.status_container = Box( self.status_container = Box(