Skip to content

Commit

Permalink
Wrapped table in frame to fix overflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
dmackdev committed Aug 5, 2023
1 parent 2404844 commit 309ee67
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pubsubman_gui/src/ui/messages_view.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,9 @@ impl MessagesView {
});

if !messages.is_empty() {
render_messages_table(ui, messages);
egui::Frame::none().show(ui, |ui| {
render_messages_table(ui, messages);
});
}
}
}
Expand Down

0 comments on commit 309ee67

Please sign in to comment.