File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Plugins/Flow.Launcher.Plugin.Explorer Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 64
64
<system : String x : Key =" plugin_explorer_Directory_Recursive_Search_Engine" >Directory Recursive Search Engine</system : String >
65
65
<system : String x : Key =" plugin_explorer_Index_Search_Engine" >Index Search Engine</system : String >
66
66
<system : String x : Key =" plugin_explorer_Open_Window_Index_Option" >Open Windows Index Option</system : String >
67
- <system : String x : Key =" plugin_explorer_Excluded_File_Types" >Ignored File Types (comma seperated)</system : String >
67
+ <system : String x : Key =" plugin_explorer_Excluded_File_Types" >Excluded File Types (comma seperated)</system : String >
68
68
<system : String x : Key =" plugin_explorer_Excluded_File_Types_Tooltip" >For example: exe,jpg,png</system : String >
69
69
70
70
<!-- Plugin Infos -->
Original file line number Diff line number Diff line change @@ -518,7 +518,8 @@ public string ExcludedFileTypes
518
518
get => Settings . ExcludedFileTypes ;
519
519
set
520
520
{
521
- string sanitized = string . IsNullOrEmpty ( value ) ? value : value . Replace ( " " , "" ) . Replace ( "." , "" ) ;
521
+ // remove spaces and dots from the string before saving
522
+ string sanitized = string . IsNullOrEmpty ( value ) ? "" : value . Replace ( " " , "" ) . Replace ( "." , "" ) ;
522
523
Settings . ExcludedFileTypes = sanitized ;
523
524
OnPropertyChanged ( ) ;
524
525
}
You can’t perform that action at this time.
0 commit comments