fix vinyl enable
This commit is contained in:
parent
64781af68f
commit
872dbfc792
@ -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})
|
||||||
|
|||||||
@ -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(
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user