Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions src/renderer/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -310,10 +310,7 @@ impl Renderer {
title,
max_line_num_len,
title_style,
matches!(
peek,
Some(Element::Message(_)) | Some(Element::Padding(_))
),
peek.is_some(),
buffer_msg_line_offset,
);
last_was_suggestion = false;
Expand Down
2 changes: 1 addition & 1 deletion tests/rustc_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3848,7 +3848,7 @@ note: for a trait to be dyn compatible it needs to allow building a vtable
for more information, visit <https://doc.rust-lang.org/reference/items/traits.html#dyn-compatibility>
╭▸ $SRC_DIR/core/src/cmp.rs:961:20
note: the trait is not dyn compatible because it uses `Self` as a type parameter
note: the trait is not dyn compatible because it uses `Self` as a type parameter
⸬ $SRC_DIR/core/src/cmp.rs:338:14
╰ note: the trait is not dyn compatible because it uses `Self` as a type parameter
Expand Down
Loading