File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -289,7 +289,7 @@ def __init__(
289
289
),
290
290
# Show when there are completions but not at the point we are
291
291
# returning the input.
292
- filter = has_completions & ~ is_done & extra_filter ,
292
+ filter = extra_filter & has_completions & ~ is_done ,
293
293
)
294
294
295
295
@@ -647,7 +647,7 @@ def __init__(
647
647
648
648
# Display filter: show when there are completions but not at the point
649
649
# we are returning the input.
650
- full_filter = has_completions & ~ is_done & extra_filter
650
+ full_filter = extra_filter & has_completions & ~ is_done
651
651
652
652
@Condition
653
653
def any_completion_has_meta () -> bool :
@@ -676,7 +676,7 @@ def any_completion_has_meta() -> bool:
676
676
677
677
meta_window = ConditionalContainer (
678
678
content = Window (content = _SelectedCompletionMetaControl ()),
679
- filter = show_meta & full_filter & any_completion_has_meta ,
679
+ filter = full_filter & show_meta & any_completion_has_meta ,
680
680
)
681
681
682
682
# Initialise split.
Original file line number Diff line number Diff line change @@ -571,9 +571,9 @@ def display_placeholder() -> bool:
571
571
dont_extend_height = True ,
572
572
height = Dimension (min = 1 ),
573
573
),
574
- filter = ~ is_done
575
- & renderer_height_is_known
576
- & Condition ( lambda : self . bottom_toolbar is not None ) ,
574
+ filter = Condition ( lambda : self . bottom_toolbar is not None )
575
+ & ~ is_done
576
+ & renderer_height_is_known ,
577
577
)
578
578
579
579
search_toolbar = SearchToolbar (
You can’t perform that action at this time.
0 commit comments