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
@@ -77,7 +77,7 @@ class Explorer(ttk.Frame):
text=f"{image.name}{'*' if image.modified else ''}",
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)
def explorer_item_click(self, event) -> None: