Skip to content

Commit 798efc0

Browse files
committed
Fix formats
1 parent ad40d36 commit 798efc0

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

Flow.Launcher.Core/Updater.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ public Updater(IPublicAPI publicAPI, string gitHubReleaseRepository, string gitH
4343
public async Task UpdateAppAsync(bool silentUpdate = true)
4444
{
4545
await UpdateLock.WaitAsync().ConfigureAwait(false);
46-
4746
try
4847
{
4948
if (!silentUpdate)
@@ -144,7 +143,6 @@ private async Task<UpdateManager> GitHubUpdateManagerAsync(string repository)
144143
{
145144
Proxy = Http.WebProxy
146145
};
147-
148146
var downloader = new FileDownloader(client);
149147

150148
var manager = new UpdateManager(latestUrl, urlDownloader: downloader);

Flow.Launcher.Infrastructure/UserSettings/Settings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ public string Theme
110110
public double SettingWindowHeight { get; set; } = 700;
111111
public double? SettingWindowTop { get; set; } = null;
112112
public double? SettingWindowLeft { get; set; } = null;
113-
public System.Windows.WindowState SettingWindowState { get; set; } = WindowState.Normal;
113+
public WindowState SettingWindowState { get; set; } = WindowState.Normal;
114114

115115
public bool PrereleaseUpdateSource { get; set; }
116116

Flow.Launcher/App.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ await Stopwatch.NormalAsync("|App.OnStartup|Startup cost", async () =>
121121

122122
RegisterAppDomainExceptions();
123123
RegisterDispatcherUnhandledException();
124-
124+
125125
var imageLoadertask = ImageLoader.InitializeAsync();
126126

127127
AbstractPluginEnvironment.PreStartPluginExecutablePathUpdate(_settings);

0 commit comments

Comments
 (0)