From 0ddfbf62fde8b8e0bde9a548b203d67b812ab61e Mon Sep 17 00:00:00 2001 From: Joe Date: Mon, 13 May 2024 20:20:20 +0200 Subject: fix --- src/i_ui.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/i_ui.go') diff --git a/src/i_ui.go b/src/i_ui.go index 3e0de04..82e6878 100644 --- a/src/i_ui.go +++ b/src/i_ui.go @@ -445,7 +445,11 @@ func i_prompt_dir(ui HardUI, prompt string, home_dir string) { func i_prompt_insert(ui HardUI, curr *ItemsNode) { path := "/" if curr != nil { - path = curr.path() + if curr.is_dir() == false { + path = curr.path() + } else { + path = curr.Dirs.Parent.path() + } } path = path[1:] prompt := "Name: " -- cgit v1.2.3