21 lines
490 B
Diff
21 lines
490 B
Diff
---
|
|
browser.c | 7 +++++++
|
|
1 file changed, 7 insertions(+)
|
|
|
|
--- browser.c
|
|
+++ browser.c 2019-11-14 08:20:37.266842776 +0000
|
|
@@ -963,6 +963,13 @@ void _mutt_buffer_select_file (BUFFER *f
|
|
{
|
|
mutt_buffer_strcpy (f, state.entry[menu->current].name);
|
|
mutt_buffer_expand_path (f);
|
|
+#ifdef USE_IMAP
|
|
+ if (mx_is_imap (mutt_b2s (f)))
|
|
+ {
|
|
+ state.imap_browse = 1;
|
|
+ mutt_buffer_strcpy (LastDir, mutt_b2s (f));
|
|
+ }
|
|
+#endif
|
|
}
|
|
#ifdef USE_IMAP
|
|
else if (state.imap_browse)
|