mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 12:32:40 +03:00
Merge branch '3285_mcedit_full_path'
* 3285_mcedit_full_path: Ticket #3285: mcedit: show full path to file in the status line.
This commit is contained in:
commit
920403884d
@ -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