mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 20:36:50 +03:00
Merge branch '2766_panelize_refresh_fix'
* 2766_panelize_refresh_fix: Ticket #2766 (Cursor position reset after update)
This commit is contained in:
commit
4a52bae1e7
@ -3861,10 +3861,15 @@ do_try_to_select (WPanel * panel, const char *name)
|
||||
}
|
||||
|
||||
/* We only want the last component of the directory,
|
||||
* and from this only the name without suffix. */
|
||||
* and from this only the name without suffix.
|
||||
* Cut prefix if the panel is not panelized */
|
||||
|
||||
if (panel->is_panelized)
|
||||
subdir = vfs_strip_suffix_from_filename (name);
|
||||
else
|
||||
subdir = vfs_strip_suffix_from_filename (x_basename (name));
|
||||
|
||||
/* Search that subdirectory, if found select it */
|
||||
/* Search that subdir or filename without prefix (if not panelized panel), select it if found */
|
||||
for (i = 0; i < panel->count; i++)
|
||||
{
|
||||
if (strcmp (subdir, panel->dir.list[i].fname) == 0)
|
||||
|
Loading…
Reference in New Issue
Block a user