From 6f2726524e49ebd02d33da3145356bea25982790 Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Tue, 6 Jun 2023 17:13:23 -0700 Subject: [PATCH] Remove stray println --- crates/editor/src/hover_popover.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/crates/editor/src/hover_popover.rs b/crates/editor/src/hover_popover.rs index 9192dc75e1..4c339e52df 100644 --- a/crates/editor/src/hover_popover.rs +++ b/crates/editor/src/hover_popover.rs @@ -588,10 +588,7 @@ impl InfoPopover { MouseRegion::new::(view_id, region_id, bounds) .on_click::( MouseButton::Left, - move |_, _, cx| { - println!("clicked link {url}"); - cx.platform().open_url(&url); - }, + move |_, _, cx| cx.platform().open_url(&url), ), ); }