supply inner_rect for PostView

Signed-off-by: kernelkind <kernelkind@gmail.com>
This commit is contained in:
kernelkind
2025-02-02 16:52:10 -05:00
parent 8c49e6e5f6
commit c1c4c1cc7a
5 changed files with 29 additions and 8 deletions

View File

@@ -22,6 +22,7 @@ pub struct PostView<'a> {
note_cache: &'a mut NoteCache,
poster: FilledKeypair<'a>,
id_source: Option<egui::Id>,
inner_rect: egui::Rect,
}
#[derive(Clone)]
@@ -84,6 +85,7 @@ impl<'a> PostView<'a> {
img_cache: &'a mut ImageCache,
note_cache: &'a mut NoteCache,
poster: FilledKeypair<'a>,
inner_rect: egui::Rect,
) -> Self {
let id_source: Option<egui::Id> = None;
PostView {
@@ -94,6 +96,7 @@ impl<'a> PostView<'a> {
poster,
id_source,
post_type,
inner_rect,
}
}
@@ -535,6 +538,7 @@ mod preview {
app.img_cache,
app.note_cache,
self.poster.to_filled(),
ui.available_rect_before_wrap(),
)
.ui(&txn, ui);
}