Skip to content

Commit 6f37f9b

Browse files
committed
bugfix
1 parent 9b7d2c0 commit 6f37f9b

File tree

5 files changed

+5
-3
lines changed

5 files changed

+5
-3
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,5 @@
22
pkg/.DS_Store
33
/pkg/__pycache__
44
pkg/.DS_Store
5+
/pkg/__pycache__
6+
/pkg/__pycache__

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
}
6363
},
6464
"short_name": "Dashboard",
65-
"version": "0.0.5",
65+
"version": "0.0.6",
6666
"web_accessible_resources": [
6767
"css/*.css",
6868
"icons/*.svg",
0 Bytes
Binary file not shown.
-83 Bytes
Binary file not shown.

pkg/dashboard.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -242,9 +242,9 @@ def add_from_config(self):
242242
print("Start with Dashboard preference was in config: " + str(self.start_with_dashboard))
243243

244244
if "Hide animations" in config:
245-
self.animations = !bool(config["Hide animations"]) # can be "cover", "contain" or "mix"
245+
self.animations = not bool(config["Hide animations"]) # can be "cover", "contain" or "mix"
246246
if self.DEBUG:
247-
print("Animations preference was in config: " + str(self.animations)
247+
print("Animations preference was in config: " + str(self.animations))
248248

249249
if "Black and white" in config:
250250
self.greyscale = bool(config["Black and white"]) # can be "cover", "contain" or "mix"

0 commit comments

Comments
 (0)