mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 04:22:34 +03:00
Ticket #3285: mcedit: show full path to file in the status line.
Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
parent
054182b877
commit
be38f70704
@ -210,7 +210,7 @@ edit_status_fullscreen (WEdit * edit, int color)
|
||||
status_len = (int) str_term_width1 (status);
|
||||
|
||||
if (edit->filename_vpath != NULL)
|
||||
fname = x_basename (vfs_path_get_last_path_str (edit->filename_vpath));
|
||||
fname = vfs_path_get_last_path_str (edit->filename_vpath);
|
||||
|
||||
fname_len = str_term_width1 (fname);
|
||||
if (fname_len < preferred_fname_len)
|
||||
@ -263,9 +263,7 @@ edit_status_window (WEdit * edit)
|
||||
const char *fname = N_("NoName");
|
||||
|
||||
if (edit->filename_vpath != NULL)
|
||||
{
|
||||
fname = x_basename (vfs_path_as_str (edit->filename_vpath));
|
||||
}
|
||||
fname = vfs_path_get_last_path_str (edit->filename_vpath);
|
||||
#ifdef ENABLE_NLS
|
||||
else
|
||||
fname = _(fname);
|
||||
|
Loading…
Reference in New Issue
Block a user