From 7352c112dda901b61cbf63aaf07926d00ffbf3b2 Mon Sep 17 00:00:00 2001 From: Oren Nachman Date: Sun, 24 Jul 2022 18:49:19 -0700 Subject: [PATCH] Allow setting fonts separately for query box and results Fixes #1284: `CollectionViewSource` will synchronize the current item across all users of the same view source unless they explicitly set `IsSynchronizedWithCurrentItem`. --- Flow.Launcher/SettingWindow.xaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Flow.Launcher/SettingWindow.xaml b/Flow.Launcher/SettingWindow.xaml index 1eb162a92..652977686 100644 --- a/Flow.Launcher/SettingWindow.xaml +++ b/Flow.Launcher/SettingWindow.xaml @@ -1796,7 +1796,8 @@ HorizontalAlignment="Left" VerticalAlignment="Top" ItemsSource="{Binding Source={StaticResource SortedFonts}}" - SelectedItem="{Binding SelectedQueryBoxFont}" /> + SelectedItem="{Binding SelectedQueryBoxFont}" + IsSynchronizedWithCurrentItem="False" /> + SelectedItem="{Binding SelectedResultFont}" + IsSynchronizedWithCurrentItem="False" />