Skip to content

Commit

Permalink
Fixup clippy warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
tot0 committed Jan 5, 2024
1 parent b46da91 commit 3396274
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/re_space_view_text_log/src/space_view_class.rs
Original file line number Diff line number Diff line change
Expand Up @@ -443,9 +443,9 @@ fn table_ui(
};
text = text.layouter(&mut layouter);

let mut response = text.ui(ui);
let response = text.ui(ui);
if response.hovered() {
response = response.on_hover_text(entry.body.as_str());
response.on_hover_text(entry.body.as_str());
}
} else {
let mut text = egui::RichText::new(entry.body.as_str());
Expand Down

0 comments on commit 3396274

Please sign in to comment.