From 308cead8a8e7e189d811cc97e324d9676a598c6c Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Sat, 12 Mar 2022 10:44:11 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=99=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Antonio Scandurra --- crates/editor/src/editor.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/crates/editor/src/editor.rs b/crates/editor/src/editor.rs index 764cacd26438000ad08be6d58b44223da0e8a1db..57e43f874ef7b8d5cafa7be234a1effff667c3e8 100644 --- a/crates/editor/src/editor.rs +++ b/crates/editor/src/editor.rs @@ -5737,9 +5737,7 @@ fn build_style( } }; - if let Some(highlight_style) = - override_text_style.and_then(|build_style| dbg!(build_style(&style))) - { + if let Some(highlight_style) = override_text_style.and_then(|build_style| build_style(&style)) { if let Some(highlighted) = style .text .clone() @@ -5747,7 +5745,6 @@ fn build_style( .log_err() { style.text = highlighted; - dbg!(&style.text); } }