small fixes

This commit is contained in:
Klemek
2021-08-27 10:20:46 +02:00
parent 80e157c86f
commit 05039ea001
4 changed files with 8 additions and 3 deletions
+1 -1
View File
@@ -219,7 +219,7 @@ class App(ttk.Frame):
self.open_file(path) self.open_file(path)
def _file_save(self) -> None: def _file_save(self) -> None:
self.save_file() self.save_file(self.current_file.path)
def _file_save_as(self) -> None: def _file_save_as(self) -> None:
path = filedialog.asksaveasfilename( path = filedialog.asksaveasfilename(
+1 -1
View File
@@ -77,7 +77,7 @@ class Explorer(ttk.Frame):
text=f"{image.name}{'*' if image.modified else ''}", text=f"{image.name}{'*' if image.modified else ''}",
values=[f"{image.width}x{image.height}"], values=[f"{image.width}x{image.height}"],
) )
if self.size > 0 and (focus_id != self.current_id or force): if self.size > 0 and focus_id != self.current_id:
self.focus(focus_id) self.focus(focus_id)
def explorer_item_click(self, event) -> None: def explorer_item_click(self, event) -> None:
+6
View File
@@ -62,3 +62,9 @@ class File:
with open(path, mode="w") as f: with open(path, mode="w") as f:
for image in self.images: for image in self.images:
f.write(image.export_cpp()) f.write(image.export_cpp())
def __eq__(self, other: object) -> bool:
if isinstance(other, self.__class__):
return self.path == other.path
else:
return False
-1
View File
@@ -41,7 +41,6 @@ class Image:
def set_pixel(self, x: int, y: int, v: bool) -> None: def set_pixel(self, x: int, y: int, v: bool) -> None:
position = self.__get_position(x, y) position = self.__get_position(x, y)
chunk_id = position // 8 chunk_id = position // 8
# TODO fix, invalid chunk id when drawing
if v != self.get_pixel(x, y): if v != self.get_pixel(x, y):
if v: if v:
self.data[chunk_id] |= 1 << (7 - position % 8) self.data[chunk_id] |= 1 << (7 - position % 8)