notedeck

One damus client to rule them all
git clone git://jb55.com/notedeck
Log | Files | Refs | README | LICENSE

commit b228411b8db9ecef6388d85e3b0f496a5d76eada
parent 66377351b3d2e579e9fb44b30657f9794442a062
Author: William Casarin <jb55@jb55.com>
Date:   Tue, 15 Apr 2025 08:24:24 -0700

columns: remove thread warning

yes threads suck, but this message is also annoying

Diffstat:
Mcrates/notedeck_columns/src/ui/thread.rs | 5-----
1 file changed, 0 insertions(+), 5 deletions(-)

diff --git a/crates/notedeck_columns/src/ui/thread.rs b/crates/notedeck_columns/src/ui/thread.rs @@ -56,11 +56,6 @@ impl<'a, 'd> ThreadView<'a, 'd> { pub fn ui(&mut self, ui: &mut egui::Ui) -> Option<NoteAction> { let txn = Transaction::new(self.note_context.ndb).expect("txn"); - ui.label( - egui::RichText::new("Threads ALPHA! It's not done. Things will be broken.") - .color(egui::Color32::RED), - ); - egui::ScrollArea::vertical() .id_salt(self.id_source) .animated(false)