propagate current account

Signed-off-by: kernelkind <kernelkind@gmail.com>
This commit is contained in:
kernelkind
2025-04-08 17:48:07 -04:00
parent 18ea05db0a
commit 5917bc16fd
13 changed files with 120 additions and 20 deletions

View File

@@ -64,11 +64,16 @@ impl<'a, 'd> PostReplyView<'a, 'd> {
let selection = egui::Frame::NONE
.outer_margin(egui::Margin::same(note_offset))
.show(ui, |ui| {
ui::NoteView::new(self.note_context, self.note, self.note_options)
.actionbar(false)
.medium_pfp(true)
.options_button(true)
.show(ui)
ui::NoteView::new(
self.note_context,
&Some(self.poster.into()),
self.note,
self.note_options,
)
.actionbar(false)
.medium_pfp(true)
.options_button(true)
.show(ui)
})
.inner
.context_selection;