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 {
328328
329329 out. push (
330330 CommandInfo :: new (
331- strings:: commands:: navigate_tree (
332- & self . key_config ,
333- ) ,
331+ strings:: commands:: scroll_popup ( & self . key_config ) ,
334332 true ,
335333 true ,
336334 )
@@ -370,12 +368,14 @@ impl Component for LogSearchPopupComponent {
370368 && !self . find_text . get_text ( ) . trim ( ) . is_empty ( )
371369 {
372370 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+ ) {
375375 self . move_selection ( true ) ;
376376 } else if key_match (
377377 key,
378- self . key_config . keys . move_down ,
378+ self . key_config . keys . popup_down ,
379379 ) {
380380 self . move_selection ( false ) ;
381381 } else if key_match (
You can’t perform that action at this time.
0 commit comments