mirror of
https://github.com/csd4ni3l/music-player.git
synced 2026-01-01 12:13:42 +01:00
Fix stretched music logo and paths for Windows
This commit is contained in:
@@ -27,7 +27,7 @@ class Downloader(arcade.gui.UIView):
|
||||
with open("settings.json", "r", encoding="utf-8") as file:
|
||||
self.settings_dict = json.load(file)
|
||||
|
||||
self.tab_options = self.settings_dict.get("tab_options", ["~/Music", "~/Downloads"])
|
||||
self.tab_options = self.settings_dict.get("tab_options", [os.path.join("~", "Music"), os.path.join("~", "Downloads")])
|
||||
self.yt_dl_buffer = ""
|
||||
|
||||
def on_show_view(self):
|
||||
|
||||
Reference in New Issue
Block a user