From 4ced99569d44444c9c3f465e2d11df8b17f90c07 Mon Sep 17 00:00:00 2001 From: Dobin Park Date: Tue, 28 Sep 2021 01:20:36 +0900 Subject: [PATCH] - Delete Comment --- Flow.Launcher/Converters/HighlightTextConverter.cs | 5 ++--- Flow.Launcher/Flow.Launcher.csproj | 2 -- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/Flow.Launcher/Converters/HighlightTextConverter.cs b/Flow.Launcher/Converters/HighlightTextConverter.cs index 6bea2092c..972dd1bc8 100644 --- a/Flow.Launcher/Converters/HighlightTextConverter.cs +++ b/Flow.Launcher/Converters/HighlightTextConverter.cs @@ -1,4 +1,4 @@ -using System.Windows;using System; +using System; using System.Collections.Generic; using System.Globalization; using System.Linq; @@ -31,8 +31,7 @@ namespace Flow.Launcher.Converters var currentCharacter = text.Substring(i, 1); if (this.ShouldHighlight(highlightData, i)) { - //textBlock.Inlines.Add(new Bold(new Run(currentCharacter))); - //textBlock.Inlines.Add(new Run(currentCharacter) { Foreground = Brushes.RoyalBlue }); + textBlock.Inlines.Add(new Run(currentCharacter) { Style = (Style)Application.Current.FindResource("HighlightStyle") }); } diff --git a/Flow.Launcher/Flow.Launcher.csproj b/Flow.Launcher/Flow.Launcher.csproj index bb3c84eec..69de0b379 100644 --- a/Flow.Launcher/Flow.Launcher.csproj +++ b/Flow.Launcher/Flow.Launcher.csproj @@ -47,10 +47,8 @@ - -