From 3f29fae12f33146f6cf5c743c0dc1575e6a4ea42 Mon Sep 17 00:00:00 2001 From: Joe Julian Date: Sun, 29 Mar 2026 13:41:44 -0700 Subject: [PATCH] Drop obsolete UI path fallback after rebase --- main.go | 8 -------- ui_keyboard.go | 1 - 2 files changed, 9 deletions(-) diff --git a/main.go b/main.go index 941aca3..1ec8d61 100644 --- a/main.go +++ b/main.go @@ -232,11 +232,6 @@ func newUIWithState(mode string, sess appstate.CurrentSession) *ui { } func (u *ui) filter() { - if len(u.state.CurrentPath) == 0 && len(u.currentPath) > 0 { - u.state.CurrentPath = append([]string(nil), u.currentPath...) - } else { - u.currentPath = append([]string(nil), u.state.CurrentPath...) - } u.state.SearchQuery = u.search.Text() visible, err := u.state.VisibleEntries() if err != nil { @@ -287,21 +282,18 @@ func (u *ui) selectedAttachmentNames() []string { func (u *ui) showEntriesSection() { u.state.Section = appstate.SectionEntries u.state.NavigateToPath(nil) - u.currentPath = nil u.filter() } func (u *ui) showTemplatesSection() { u.state.Section = appstate.SectionTemplates u.state.NavigateToPath(nil) - u.currentPath = nil u.filter() } func (u *ui) showRecycleBinSection() { u.state.Section = appstate.SectionRecycleBin u.state.NavigateToPath(nil) - u.currentPath = nil u.filter() } diff --git a/ui_keyboard.go b/ui_keyboard.go index 66fe538..c9ac9a0 100644 --- a/ui_keyboard.go +++ b/ui_keyboard.go @@ -241,7 +241,6 @@ func (u *ui) activateBreadcrumb(index int) { crumbs := u.breadcrumbLabels() path = append([]string{}, crumbs[1:index+1]...) } - u.currentPath = append([]string(nil), path...) u.state.NavigateToPath(path) u.filter() if index >= len(u.breadcrumbLabels()) {