diff options
author | 2024-07-18 22:55:40 +0200 | |
---|---|---|
committer | 2024-07-18 22:55:40 +0200 | |
commit | 1d1a5f1a28ba3002fcdd64e4cbfe1881d7ae37cb (patch) | |
tree | 05352caf0be22a571825b973f36aa31e0b29957f /highlighter | |
parent | 23ad15391c88f562c90f4344d3949f76b6f9caf9 (diff) | |
download | iced-1d1a5f1a28ba3002fcdd64e4cbfe1881d7ae37cb.tar.gz iced-1d1a5f1a28ba3002fcdd64e4cbfe1881d7ae37cb.tar.bz2 iced-1d1a5f1a28ba3002fcdd64e4cbfe1881d7ae37cb.zip |
Fix newlines in `highlighter` and `markdown` example
Diffstat (limited to 'highlighter')
-rw-r--r-- | highlighter/src/lib.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/highlighter/src/lib.rs b/highlighter/src/lib.rs index deee199f..83a15cb1 100644 --- a/highlighter/src/lib.rs +++ b/highlighter/src/lib.rs @@ -169,7 +169,6 @@ impl Highlight { pub fn font(&self) -> Option<Font> { self.0.font_style.and_then(|style| { let bold = style.contains(highlighting::FontStyle::BOLD); - let italic = style.contains(highlighting::FontStyle::ITALIC); if bold || italic { |