diff --git a/random_file_picker/tui.py b/random_file_picker/tui.py index fc3d2a4..840b3b2 100644 --- a/random_file_picker/tui.py +++ b/random_file_picker/tui.py @@ -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: