chore(display): remove commented code block

This commit is contained in:
Michael Aaron Murphy 2025-02-28 16:59:09 +01:00
parent dda70e1441
commit 95e77491c5
No known key found for this signature in database
GPG key ID: B2732D4240C9212C

View file

@ -314,23 +314,6 @@ impl page::Page<crate::pages::Message> for Page {
}))
.abortable();
// tokio::task::spawn(async move {
// while let Ok(message) = rx.recv().await {
// if sender.is_closed() {
// return;
// }
// if let cosmic_randr::Message::ManagerDone = message {
// if !refreshing_page.swap(true, Ordering::SeqCst) {
// let sender = sender.clone();
// tokio::spawn(async move {
// _ = sender.send(on_enter().await).await;
// });
// }
// }
// }
// });
tasks.push(randr_task);
self.randr_handle = Some((canceller, randr_handle));
}