feat: move file count to the front of the filename

This commit is contained in:
2026-08-21 17:44:11 +03:00
parent d92ee5cb60
commit b078184f2f
+1 -1
View File
@@ -218,7 +218,7 @@ class MenuApp(App[None]):
self.current_file = self.usable_files[self.current_index]
file_count_str = f"({self.current_index + 1}/{len(self.usable_files)})"
self.query_one("#current-file", Label).update(f"📄 {self.current_file} {file_count_str}")
self.query_one("#current-file", Label).update(f"📄 {file_count_str} {self.current_file}")
self.open_file()
def open_file(self) -> None: