more menu actions

This commit is contained in:
Klemek
2021-08-27 10:56:36 +02:00
parent 05039ea001
commit 3c58b5c0c2
4 changed files with 100 additions and 15 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ class Image:
self.height = height
self.modified = False
if empty:
self.data = [0] * (width * height) // 8
self.data = [0] * ((width * height) // 8)
self.modified = True
else:
self.data = []