update presets performance and refactor class, plus change more icons

This commit is contained in:
Andrew Ward
2025-03-21 18:18:34 +00:00
parent 704b6269bc
commit 170199c604
15 changed files with 570 additions and 375 deletions

9
check_image_size.py Normal file
View File

@@ -0,0 +1,9 @@
from PIL import Image
import os
icon_dir = 'assets/icons'
for filename in os.listdir(icon_dir):
if filename.endswith('.png'):
path = os.path.join(icon_dir, filename)
img = Image.open(path)
print(f"{filename}: {img.size}")