Skip to content

Commit ac62eba

Browse files
committed
Add space for code quality
1 parent 54622d6 commit ac62eba

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

Flow.Launcher.Infrastructure/UserSettings/CustomBrowserViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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; }

Flow.Launcher.Infrastructure/UserSettings/CustomExplorerViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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\"";

Flow.Launcher/MainWindow.xaml.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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" };

Flow.Launcher/ViewModel/PluginViewModel.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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 ?

0 commit comments

Comments
 (0)