mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-07 01:14:15 +02:00
[themes] fix: not able to load themes from ~/.local/share/bauh/themes that are not inside folders
This commit is contained in:
@@ -114,7 +114,7 @@ def read_default_themes() -> Dict[str, str]:
|
||||
|
||||
|
||||
def read_user_themes() -> Dict[str, str]:
|
||||
return {f: f for f in glob.glob('{}/**/*.qss'.format(USER_THEMES_PATH))}
|
||||
return {f: f for f in glob.glob('{}/**/*.qss'.format(USER_THEMES_PATH), recursive=True)}
|
||||
|
||||
|
||||
def read_all_themes_metadata() -> Set[ThemeMetadata]:
|
||||
|
||||
Reference in New Issue
Block a user