From 9957773ff99b157e9ca8346d09067c8daaadf6e4 Mon Sep 17 00:00:00 2001 From: Jeremy Date: Mon, 10 May 2021 21:43:21 +1000 Subject: [PATCH] adjusted Explorer plugin's excluded and quick access control height --- .../Views/ExplorerSettings.xaml.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Views/ExplorerSettings.xaml.cs b/Plugins/Flow.Launcher.Plugin.Explorer/Views/ExplorerSettings.xaml.cs index 5d2980c55..26f169c92 100644 --- a/Plugins/Flow.Launcher.Plugin.Explorer/Views/ExplorerSettings.xaml.cs +++ b/Plugins/Flow.Launcher.Plugin.Explorer/Views/ExplorerSettings.xaml.cs @@ -108,7 +108,7 @@ namespace Flow.Launcher.Plugin.Explorer.Views private void expActionKeywords_Click(object sender, RoutedEventArgs e) { if (expActionKeywords.IsExpanded) - expActionKeywords.Height = 215; + expActionKeywords.Height = 205; if (expExcludedPaths.IsExpanded) expExcludedPaths.IsExpanded = false; @@ -128,7 +128,7 @@ namespace Flow.Launcher.Plugin.Explorer.Views private void expAccessLinks_Click(object sender, RoutedEventArgs e) { if (expAccessLinks.IsExpanded) - expAccessLinks.Height = 215; + expAccessLinks.Height = 205; if (expExcludedPaths.IsExpanded) expExcludedPaths.IsExpanded = false;