File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -328,9 +328,7 @@ impl Component for LogSearchPopupComponent {
328
328
329
329
out. push (
330
330
CommandInfo :: new (
331
- strings:: commands:: navigate_tree (
332
- & self . key_config ,
333
- ) ,
331
+ strings:: commands:: scroll_popup ( & self . key_config ) ,
334
332
true ,
335
333
true ,
336
334
)
@@ -370,12 +368,14 @@ impl Component for LogSearchPopupComponent {
370
368
&& !self . find_text . get_text ( ) . trim ( ) . is_empty ( )
371
369
{
372
370
self . execute_search ( ) ;
373
- } else if key_match ( key, self . key_config . keys . move_up )
374
- {
371
+ } else if key_match (
372
+ key,
373
+ self . key_config . keys . popup_up ,
374
+ ) {
375
375
self . move_selection ( true ) ;
376
376
} else if key_match (
377
377
key,
378
- self . key_config . keys . move_down ,
378
+ self . key_config . keys . popup_down ,
379
379
) {
380
380
self . move_selection ( false ) ;
381
381
} else if key_match (
You can’t perform that action at this time.
0 commit comments