Skip to content

Commit 5ffe091

Browse files
committed
Adjust Exploer Setting Panel
1 parent abb0c02 commit 5ffe091

File tree

2 files changed

+18
-16
lines changed

2 files changed

+18
-16
lines changed

Plugins/Flow.Launcher.Plugin.Explorer/Languages/en.xaml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,11 @@
3030
<system:String x:Key="plugin_explorer_quickaccesslinks_header">Quick Access Links</system:String>
3131
<system:String x:Key="plugin_explorer_everything_setting_header">Everything Setting</system:String>
3232
<system:String x:Key="plugin_explorer_previewpanel_setting_header">Preview Panel</system:String>
33-
<system:String x:Key="plugin_explorer_previewpanel_display_file_size_checkbox">Display file size</system:String>
34-
<system:String x:Key="plugin_explorer_previewpanel_display_file_creation_checkbox">Display file creation date</system:String>
35-
<system:String x:Key="plugin_explorer_previewpanel_display_file_modification_checkbox">Display file modification date</system:String>
36-
<system:String x:Key="plugin_explorer_previewpanel_date_and_time_format_label">Date and time format:</system:String>
33+
<system:String x:Key="plugin_explorer_previewpanel_display_file_size_checkbox">Size</system:String>
34+
<system:String x:Key="plugin_explorer_previewpanel_display_file_creation_checkbox">Creation date</system:String>
35+
<system:String x:Key="plugin_explorer_previewpanel_display_file_modification_checkbox">Modification date</system:String>
36+
<system:String x:Key="plugin_explorer_previewpanel_file_info_label">Display File Info</system:String>
37+
<system:String x:Key="plugin_explorer_previewpanel_date_and_time_format_label">Date and time format</system:String>
3738
<system:String x:Key="plugin_explorer_everything_sort_option">Sort Option:</system:String>
3839
<system:String x:Key="plugin_explorer_everything_installed_path">Everything Path:</system:String>
3940
<system:String x:Key="plugin_explorer_launch_hidden">Launch Hidden</system:String>
@@ -110,10 +111,11 @@
110111
<system:String x:Key="plugin_explorer_openwith">Open With</system:String>
111112
<system:String x:Key="plugin_explorer_openwith_subtitle">Select a program to open with</system:String>
112113

113-
<!-- Special Results-->
114+
<!-- Special Results -->
114115
<system:String x:Key="plugin_explorer_diskfreespace">{0} free of {1}</system:String>
115116
<system:String x:Key="plugin_explorer_openresultfolder">Open in Default File Manager</system:String>
116-
<system:String x:Key="plugin_explorer_openresultfolder_subtitle">Use '>' to search in this directory, '*' to search for file extensions or '>*' to combine both searches.</system:String>
117+
<system:String x:Key="plugin_explorer_openresultfolder_subtitle">
118+
Use '>' to search in this directory, '*' to search for file extensions or '>*' to combine both searches.</system:String>
117119

118120
<!-- Everything -->
119121
<system:String x:Key="flowlauncher_plugin_everything_sdk_issue">Failed to load Everything SDK</system:String>

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

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,9 @@
353353
Header="{DynamicResource plugin_explorer_previewpanel_setting_header}"
354354
Style="{DynamicResource ExplorerTabItem}">
355355
<StackPanel Margin="30,20,0,10">
356+
<TextBlock Foreground="{DynamicResource Color05B}" Text="{DynamicResource plugin_explorer_previewpanel_file_info_label}" />
356357
<CheckBox
358+
Margin="0,10,0,0"
357359
Content="{DynamicResource plugin_explorer_previewpanel_display_file_size_checkbox}"
358360
IsChecked="{Binding ShowFileSizeInPreviewPanel}" />
359361

@@ -371,30 +373,28 @@
371373
Margin="0,20,0,0"
372374
IsEnabled="{Binding ShowPreviewPanelDateTimeChoices}"
373375
Visibility="{Binding PreviewPanelDateTimeChoicesVisibility}">
374-
<TextBlock
375-
Text="{DynamicResource plugin_explorer_previewpanel_date_and_time_format_label}"
376-
Foreground="{DynamicResource Color05B}" />
377-
<StackPanel Orientation="Horizontal" Margin="0,10,0,0">
376+
<TextBlock Foreground="{DynamicResource Color05B}" Text="{DynamicResource plugin_explorer_previewpanel_date_and_time_format_label}" />
377+
<StackPanel Margin="0,10,0,0" Orientation="Horizontal">
378378
<ComboBox
379379
Width="200"
380380
ItemsSource="{Binding DateFormatList}"
381381
SelectedItem="{Binding PreviewPanelDateFormat}" />
382382
<TextBlock
383383
Margin="12,0,0,0"
384384
VerticalAlignment="Center"
385-
Text="{Binding PreviewPanelDateFormatDemo}"
386-
Foreground="{DynamicResource Color05B}" />
385+
Foreground="{DynamicResource Color05B}"
386+
Text="{Binding PreviewPanelDateFormatDemo}" />
387387
</StackPanel>
388-
<StackPanel Orientation="Horizontal" Margin="0,10,0,0">
388+
<StackPanel Margin="0,10,0,10" Orientation="Horizontal">
389389
<ComboBox
390390
Width="200"
391391
ItemsSource="{Binding TimeFormatList}"
392392
SelectedItem="{Binding PreviewPanelTimeFormat}" />
393393
<TextBlock
394394
Margin="12,0,0,0"
395395
VerticalAlignment="Center"
396-
Text="{Binding PreviewPanelTimeFormatDemo}"
397-
Foreground="{DynamicResource Color05B}" />
396+
Foreground="{DynamicResource Color05B}"
397+
Text="{Binding PreviewPanelTimeFormatDemo}" />
398398
</StackPanel>
399399
</StackPanel>
400400
</StackPanel>
@@ -454,7 +454,7 @@
454454
<TextBox
455455
Grid.Row="2"
456456
Grid.Column="1"
457-
Width="250"
457+
MinWidth="350"
458458
Margin="0,15,0,0"
459459
Text="{Binding EverythingInstalledPath}" />
460460
</Grid>

0 commit comments

Comments
 (0)