aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan Araps <[email protected]>2018-06-19 10:03:55 +1000
committerGitHub <[email protected]>2018-06-19 10:03:55 +1000
commit5a3ab6fec0effa99493f301715bb18fee4f94210 (patch)
treeb977729ae6face9e53f9e0592a0d51868dd7f892
parentdocs: update (diff)
parentFix alpha not being set correctly running same image twice (diff)
downloadpywal-5a3ab6fec0effa99493f301715bb18fee4f94210.tar.xz
pywal-5a3ab6fec0effa99493f301715bb18fee4f94210.zip
Merge pull request #261 from Jagnat/fix-reload-alpha
Fix alpha not being set correctly
-rw-r--r--pywal/colors.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pywal/colors.py b/pywal/colors.py
index 26e2c60..f8d7260 100644
--- a/pywal/colors.py
+++ b/pywal/colors.py
@@ -119,7 +119,7 @@ def get(img, light=False, backend="wal", cache_dir=CACHE_DIR):
colors = theme.file(cache_file)
logger.disabled = False
- util.Color.alpha_num = colors["alpha"]
+ colors["alpha"] = util.Color.alpha_num
logging.info("Found cached colorscheme.")
else: