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
7
7
{
8
8
public string Name { get ; set ; }
9
9
[ JsonIgnore ]
10
- public string DisplayName => Name == "Default" ? Localize . defaultBrowser_default ( ) : Name ;
10
+ public string DisplayName => Name == "Default" ? Localize . defaultBrowser_default ( ) : Name ;
11
11
public string Path { get ; set ; }
12
12
public string PrivateArg { get ; set ; }
13
13
public bool EnablePrivate { get ; set ; }
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ public class CustomExplorerViewModel : BaseModel
7
7
{
8
8
public string Name { get ; set ; }
9
9
[ JsonIgnore ]
10
- public string DisplayName => Name == "Explorer" ? Localize . fileManagerExplorer ( ) : Name ;
10
+ public string DisplayName => Name == "Explorer" ? Localize . fileManagerExplorer ( ) : Name ;
11
11
public string Path { get ; set ; }
12
12
public string FileArgument { get ; set ; } = "\" %d\" " ;
13
13
public string DirectoryArgument { get ; set ; } = "\" %d\" " ;
Original file line number Diff line number Diff line change @@ -753,7 +753,7 @@ private void InitializeNotifyIcon()
753
753
private void UpdateNotifyIconText ( )
754
754
{
755
755
var menu = _contextMenu ;
756
- ( ( MenuItem ) menu . Items [ 0 ] ) . Header = Localize . iconTrayOpen ( ) +
756
+ ( ( MenuItem ) menu . Items [ 0 ] ) . Header = Localize . iconTrayOpen ( ) +
757
757
" (" + _settings . Hotkey + ")" ;
758
758
( ( MenuItem ) menu . Items [ 1 ] ) . Header = Localize . GameMode ( ) ;
759
759
( ( MenuItem ) menu . Items [ 2 ] ) . Header = Localize . PositionReset ( ) ;
@@ -768,7 +768,7 @@ private void InitializeContextMenu()
768
768
var openIcon = new FontIcon { Glyph = "\ue71e " } ;
769
769
var open = new MenuItem
770
770
{
771
- Header = Localize . iconTrayOpen ( ) + " (" + _settings . Hotkey + ")" ,
771
+ Header = Localize . iconTrayOpen ( ) + " (" + _settings . Hotkey + ")" ,
772
772
Icon = openIcon
773
773
} ;
774
774
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)
164
164
Visibility . Collapsed : Visibility . Visible ;
165
165
public string InitializeTime => PluginPair . Metadata . InitTime + "ms" ;
166
166
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 ;
168
168
public string InitAndQueryTime =>
169
- Localize . plugin_init_time ( ) + " " +
169
+ Localize . plugin_init_time ( ) + " " +
170
170
PluginPair . Metadata . InitTime + "ms, " +
171
- Localize . plugin_query_time ( ) + " " +
171
+ Localize . plugin_query_time ( ) + " " +
172
172
PluginPair . Metadata . AvgQueryTime + "ms" ;
173
173
public string ActionKeywordsText => string . Join ( Query . ActionKeywordSeparator , PluginPair . Metadata . ActionKeywords ) ;
174
174
public string SearchDelayTimeText => PluginPair . Metadata . SearchDelayTime == null ?
You can’t perform that action at this time.
0 commit comments