mirror of https://github.com/encounter/objdiff.git
Split function diff view: Enable PageUp/PageDown/Home/End for scrolling
This commit is contained in:
parent
98e971d0ce
commit
f2b410f027
|
@ -471,6 +471,7 @@ fn asm_table_ui(
|
|||
if column == 0 {
|
||||
if let Some(ctx) = left_ctx {
|
||||
if ctx.has_symbol() {
|
||||
hotkeys::check_scroll_hotkeys(ui, false);
|
||||
render_table(
|
||||
ui,
|
||||
available_width / 2.0,
|
||||
|
@ -532,6 +533,7 @@ fn asm_table_ui(
|
|||
} else if column == 1 {
|
||||
if let Some(ctx) = right_ctx {
|
||||
if ctx.has_symbol() {
|
||||
hotkeys::check_scroll_hotkeys(ui, false);
|
||||
render_table(
|
||||
ui,
|
||||
available_width / 2.0,
|
||||
|
|
Loading…
Reference in New Issue