Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion qt/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -2020,7 +2020,10 @@ def _dir_history(self, path):
backup_id = self.selected_backup_id()

if backup_id is None:
raise NotImplementedError('Now is selected!?')
# Directory history navigation is snapshot-based. When "Now" is
# selected there is no backup context to resolve the stored path
# against, so mouse back/forward should simply do nothing.
return

full_path = backup_id.pathBackup(path)

Expand Down