mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 04:46:55 +03:00
Fix parameter in load_hint() calls.
Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
parent
dd60bf40dc
commit
b8d6d348a3
@ -628,7 +628,7 @@ layout_change (void)
|
||||
how the panel are split (horizontal/vertical),
|
||||
and a change of menu visibility. */
|
||||
update_menu ();
|
||||
load_hint (1);
|
||||
load_hint (TRUE);
|
||||
}
|
||||
|
||||
/* --------------------------------------------------------------------------------------------- */
|
||||
|
@ -1405,7 +1405,7 @@ midnight_callback (Widget * w, Widget * sender, widget_msg_t msg, int parm, void
|
||||
return MSG_HANDLED;
|
||||
|
||||
case MSG_DRAW:
|
||||
load_hint (1);
|
||||
load_hint (TRUE);
|
||||
/* We handle the special case of the output lines */
|
||||
if (mc_global.tty.console_flag != '\0' && output_lines)
|
||||
show_console_contents (output_start_y,
|
||||
|
@ -3270,7 +3270,7 @@ _do_panel_cd (WPanel * panel, const vfs_path_t * new_dir_vpath, enum cd_enum cd_
|
||||
&panel->sort_info, panel->filter);
|
||||
try_to_select (panel, get_parent_dir_name (panel->cwd_vpath, olddir_vpath));
|
||||
|
||||
load_hint (0);
|
||||
load_hint (FALSE);
|
||||
panel->dirty = 1;
|
||||
update_xterm_title_path ();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user