mirror of https://github.com/MidnightCommander/mc
* find.c: Remove useless calls to paint_panel().
* panelize.c: Likewise.
This commit is contained in:
parent
109b933235
commit
33078ab195
|
@ -1,5 +1,8 @@
|
|||
2003-09-10 Pavel Roskin <proski@gnu.org>
|
||||
|
||||
* find.c: Remove useless calls to paint_panel().
|
||||
* panelize.c: Likewise.
|
||||
|
||||
* screen.c (use_display_format): Set dirty flag. Remove calls
|
||||
to paint_panel() where they become unneeded.
|
||||
|
||||
|
|
|
@ -998,7 +998,6 @@ do_find (void)
|
|||
(strchr (filename + 4, ':') - filename + 1) : 4) );
|
||||
} else if (filename)
|
||||
do_cd (filename, cd_exact);
|
||||
paint_panel (cpanel);
|
||||
select_item (cpanel);
|
||||
}
|
||||
if (dirname)
|
||||
|
@ -1019,7 +1018,6 @@ do_find (void)
|
|||
if (dir_and_file_set){
|
||||
try_to_select (cpanel, NULL);
|
||||
panel_re_sort (cpanel);
|
||||
paint_panel (cpanel);
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
|
|
@ -423,5 +423,4 @@ void do_external_panelize (char *command)
|
|||
close_error_pipe (0, 0);
|
||||
try_to_select (cpanel, NULL);
|
||||
panel_re_sort (cpanel);
|
||||
paint_panel (cpanel);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue