Skip to content

Commit 86598b5

Browse files
authored
Merge pull request #426 from Flow-Launcher/fix_explorer_path
Dev branch: Fix Explorer path display in settings
2 parents 0365189 + 9957773 commit 86598b5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Plugins/Flow.Launcher.Plugin.Explorer/Views/ExplorerSettings.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99
<UserControl.Resources>
1010
<DataTemplate x:Key="ListViewTemplateAccessLinks">
1111
<TextBlock
12-
Text="{Binding Nickname, Mode=OneTime}"
12+
Text="{Binding Path, Mode=OneTime}"
1313
Margin="0,5,0,5" />
1414
</DataTemplate>
1515
<DataTemplate x:Key="ListViewTemplateExcludedPaths">
1616
<TextBlock
17-
Text="{Binding Nickname, Mode=OneTime}"
17+
Text="{Binding Path, Mode=OneTime}"
1818
Margin="0,5,0,5" />
1919
</DataTemplate>
2020
<DataTemplate x:Key="ListViewActionKeywords">

Plugins/Flow.Launcher.Plugin.Explorer/Views/ExplorerSettings.xaml.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ public void RefreshView()
108108
private void expActionKeywords_Click(object sender, RoutedEventArgs e)
109109
{
110110
if (expActionKeywords.IsExpanded)
111-
expActionKeywords.Height = 215;
111+
expActionKeywords.Height = 205;
112112

113113
if (expExcludedPaths.IsExpanded)
114114
expExcludedPaths.IsExpanded = false;
@@ -128,7 +128,7 @@ private void expActionKeywords_Collapsed(object sender, RoutedEventArgs e)
128128
private void expAccessLinks_Click(object sender, RoutedEventArgs e)
129129
{
130130
if (expAccessLinks.IsExpanded)
131-
expAccessLinks.Height = 215;
131+
expAccessLinks.Height = 205;
132132

133133
if (expExcludedPaths.IsExpanded)
134134
expExcludedPaths.IsExpanded = false;

0 commit comments

Comments
 (0)