Skip to content

Commit 1d9fa90

Browse files
committed
Fix Dark Text Color in Everything Panel
1 parent 720f88a commit 1d9fa90

File tree

1 file changed

+13
-11
lines changed

1 file changed

+13
-11
lines changed

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

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@
178178
<RowDefinition />
179179
<RowDefinition />
180180
<RowDefinition />
181-
</Grid.RowDefinitions>
181+
</Grid.RowDefinitions>
182182

183183
<TextBlock
184184
Grid.Row="0"
@@ -291,9 +291,9 @@
291291
Margin="10,15,10,10"
292292
HorizontalAlignment="Left"
293293
VerticalAlignment="Center"
294+
DisplayMemberPath="Description"
294295
ItemsSource="{Binding IndexSearchEngines}"
295-
SelectedItem="{Binding SelectedIndexSearchEngine}"
296-
DisplayMemberPath="Description"/>
296+
SelectedItem="{Binding SelectedIndexSearchEngine}" />
297297
<TextBlock
298298
Grid.Row="1"
299299
Grid.Column="0"
@@ -308,9 +308,9 @@
308308
Margin="10"
309309
HorizontalAlignment="Left"
310310
VerticalAlignment="Center"
311+
DisplayMemberPath="Description"
311312
ItemsSource="{Binding ContentIndexSearchEngines}"
312-
SelectedItem="{Binding SelectedContentSearchEngine}"
313-
DisplayMemberPath="Description"/>
313+
SelectedItem="{Binding SelectedContentSearchEngine}" />
314314
<TextBlock
315315
Grid.Row="2"
316316
Grid.Column="0"
@@ -325,8 +325,8 @@
325325
Margin="10"
326326
HorizontalAlignment="Left"
327327
VerticalAlignment="Center"
328-
ItemsSource="{Binding PathEnumerationEngines}"
329328
DisplayMemberPath="Description"
329+
ItemsSource="{Binding PathEnumerationEngines}"
330330
SelectedItem="{Binding SelectedPathEnumerationEngine}" />
331331
</Grid>
332332
</StackPanel>
@@ -349,13 +349,15 @@
349349
Style="{DynamicResource ExplorerTabItem}">
350350
<StackPanel Margin="10" Orientation="Vertical">
351351
<StackPanel Orientation="Horizontal">
352-
<TextBlock Margin="10"
352+
<TextBlock
353+
Margin="10"
353354
VerticalAlignment="Center"
354-
Text="{DynamicResource flowlauncher_plugin_everything_search_fullpath}"/>
355-
<CheckBox Margin="10"
355+
Text="{DynamicResource flowlauncher_plugin_everything_search_fullpath}"
356+
TextBlock.Foreground="{DynamicResource Color05B}" />
357+
<CheckBox
358+
Margin="10"
356359
VerticalAlignment="Center"
357-
IsChecked="{Binding Settings.EverythingSearchFullPath}">
358-
</CheckBox>
360+
IsChecked="{Binding Settings.EverythingSearchFullPath}" />
359361
</StackPanel>
360362
<StackPanel Orientation="Horizontal">
361363
<Grid Margin="20,10,0,10">

0 commit comments

Comments
 (0)