mirror of
https://github.com/Faraphel/Atlas-Install.git
synced 2025-07-03 19:28:25 +02:00
ct_icon missed 2 * 128 pixels height, causing the last 2 icons to not properly appear
This commit is contained in:
parent
1657b00746
commit
fe5703e39f
1 changed files with 1 additions and 1 deletions
|
@ -5,7 +5,7 @@ import os
|
|||
|
||||
def patch_ct_icon(self):
|
||||
with open("./ct_config.json") as f: config = json.load(f)
|
||||
ct_icon = Image.new("RGBA", (128, 128 * len(config["cup"])))
|
||||
ct_icon = Image.new("RGBA", (128, 128 * (len(config["cup"]) + 2)))
|
||||
|
||||
files = ["left", "right"]
|
||||
files.extend(config["cup"].keys())
|
||||
|
|
Loading…
Reference in a new issue