mirror of
https://github.com/tstack/lnav
synced 2024-11-11 13:10:36 +00:00
[hotkeys] fix 'R' hotkey issue
set_top() was called instead of set_selection() Mentioned in #1193
This commit is contained in:
parent
21377958ca
commit
bab9f8dd9e
@ -953,7 +953,7 @@ handle_paging_key(int ch)
|
|||||||
done = true;
|
done = true;
|
||||||
}
|
}
|
||||||
} while (!done);
|
} while (!done);
|
||||||
tc->set_top(vl);
|
tc->set_selection(vl);
|
||||||
lnav_data.ld_rl_view->set_value(" " + rt.to_string());
|
lnav_data.ld_rl_view->set_value(" " + rt.to_string());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user