From fd0471bff5516b668d67cbcca7e18e76e5baa354 Mon Sep 17 00:00:00 2001 From: Jeremy Date: Mon, 10 May 2021 21:41:37 +1000 Subject: [PATCH 1/2] fix excluded and quick access path display in settings --- .../Flow.Launcher.Plugin.Explorer/Views/ExplorerSettings.xaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Views/ExplorerSettings.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Views/ExplorerSettings.xaml index 13d46394c38..b4795ec8b4b 100644 --- a/Plugins/Flow.Launcher.Plugin.Explorer/Views/ExplorerSettings.xaml +++ b/Plugins/Flow.Launcher.Plugin.Explorer/Views/ExplorerSettings.xaml @@ -9,12 +9,12 @@ From 9957773ff99b157e9ca8346d09067c8daaadf6e4 Mon Sep 17 00:00:00 2001 From: Jeremy Date: Mon, 10 May 2021 21:43:21 +1000 Subject: [PATCH 2/2] 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 5d2980c55fb..26f169c92b9 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 @@ public void RefreshView() 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 @@ private void expActionKeywords_Collapsed(object sender, RoutedEventArgs e) private void expAccessLinks_Click(object sender, RoutedEventArgs e) { if (expAccessLinks.IsExpanded) - expAccessLinks.Height = 215; + expAccessLinks.Height = 205; if (expExcludedPaths.IsExpanded) expExcludedPaths.IsExpanded = false;