From b228411b8db9ecef6388d85e3b0f496a5d76eada Mon Sep 17 00:00:00 2001 From: William Casarin Date: Tue, 15 Apr 2025 08:24:24 -0700 Subject: [PATCH] columns: remove thread warning yes threads suck, but this message is also annoying --- crates/notedeck_columns/src/ui/thread.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/crates/notedeck_columns/src/ui/thread.rs b/crates/notedeck_columns/src/ui/thread.rs index f3de78ac..d2afe4e1 100644 --- 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 { 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)