rename TimelineResponse -> ColumnNoteResponse

Signed-off-by: kernelkind <kernelkind@gmail.com>
This commit is contained in:
kernelkind
2024-10-15 12:16:26 -04:00
parent 54d49f0110
commit 2d7da83872
4 changed files with 14 additions and 14 deletions

View File

@@ -8,7 +8,7 @@ pub use picture::ProfilePic;
pub use preview::ProfilePreview;
use crate::{
actionbar::TimelineResponse, imgcache::ImageCache, notecache::NoteCache,
actionbar::NoteActionResponse, imgcache::ImageCache, notecache::NoteCache,
notes_holder::NotesHolderStorage, profile::Profile,
};
@@ -42,7 +42,7 @@ impl<'a> ProfileView<'a> {
}
}
pub fn ui(&mut self, ui: &mut egui::Ui) -> TimelineResponse {
pub fn ui(&mut self, ui: &mut egui::Ui) -> NoteActionResponse {
let scroll_id = egui::Id::new(("profile_scroll", self.col_id, self.pubkey));
ScrollArea::vertical()