File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed
Flow.Launcher.Infrastructure/UserSettings Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ public class CustomBrowserViewModel : BaseModel
77 {
88 public string Name { get ; set ; }
99 [ JsonIgnore ]
10- public string DisplayName => Name == "Default" ? Localize . defaultBrowser_default ( ) : Name ;
10+ public string DisplayName => Name == "Default" ? Localize . defaultBrowser_default ( ) : Name ;
1111 public string Path { get ; set ; }
1212 public string PrivateArg { get ; set ; }
1313 public bool EnablePrivate { get ; set ; }
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ public class CustomExplorerViewModel : BaseModel
77 {
88 public string Name { get ; set ; }
99 [ JsonIgnore ]
10- public string DisplayName => Name == "Explorer" ? Localize . fileManagerExplorer ( ) : Name ;
10+ public string DisplayName => Name == "Explorer" ? Localize . fileManagerExplorer ( ) : Name ;
1111 public string Path { get ; set ; }
1212 public string FileArgument { get ; set ; } = "\" %d\" " ;
1313 public string DirectoryArgument { get ; set ; } = "\" %d\" " ;
Original file line number Diff line number Diff line change @@ -753,7 +753,7 @@ private void InitializeNotifyIcon()
753753 private void UpdateNotifyIconText ( )
754754 {
755755 var menu = _contextMenu ;
756- ( ( MenuItem ) menu . Items [ 0 ] ) . Header = Localize . iconTrayOpen ( ) +
756+ ( ( MenuItem ) menu . Items [ 0 ] ) . Header = Localize . iconTrayOpen ( ) +
757757 " (" + _settings . Hotkey + ")" ;
758758 ( ( MenuItem ) menu . Items [ 1 ] ) . Header = Localize . GameMode ( ) ;
759759 ( ( MenuItem ) menu . Items [ 2 ] ) . Header = Localize . PositionReset ( ) ;
@@ -768,7 +768,7 @@ private void InitializeContextMenu()
768768 var openIcon = new FontIcon { Glyph = "\ue71e " } ;
769769 var open = new MenuItem
770770 {
771- Header = Localize . iconTrayOpen ( ) + " (" + _settings . Hotkey + ")" ,
771+ Header = Localize . iconTrayOpen ( ) + " (" + _settings . Hotkey + ")" ,
772772 Icon = openIcon
773773 } ;
774774 var gamemodeIcon = new FontIcon { Glyph = "\ue7fc " } ;
Original file line number Diff line number Diff line change @@ -164,11 +164,11 @@ private static Control TryCreateSettingPanel(PluginPair pair)
164164 Visibility . Collapsed : Visibility . Visible ;
165165 public string InitializeTime => PluginPair . Metadata . InitTime + "ms" ;
166166 public string QueryTime => PluginPair . Metadata . AvgQueryTime + "ms" ;
167- public string Version => Localize . plugin_query_version ( ) + " " + PluginPair . Metadata . Version ;
167+ public string Version => Localize . plugin_query_version ( ) + " " + PluginPair . Metadata . Version ;
168168 public string InitAndQueryTime =>
169- Localize . plugin_init_time ( ) + " " +
169+ Localize . plugin_init_time ( ) + " " +
170170 PluginPair . Metadata . InitTime + "ms, " +
171- Localize . plugin_query_time ( ) + " " +
171+ Localize . plugin_query_time ( ) + " " +
172172 PluginPair . Metadata . AvgQueryTime + "ms" ;
173173 public string ActionKeywordsText => string . Join ( Query . ActionKeywordSeparator , PluginPair . Metadata . ActionKeywords ) ;
174174 public string SearchDelayTimeText => PluginPair . Metadata . SearchDelayTime == null ?
You can’t perform that action at this time.
0 commit comments