Skip to content

Commit 3938858

Browse files
committed
Fix SettingWindow Position when first launch
1 parent 1596c59 commit 3938858

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Flow.Launcher/SettingWindow.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,7 @@ private void PluginStore_OnKeyDown(object sender, KeyEventArgs e)
446446

447447
public void InitializePosition()
448448
{
449-
if (settings.SettingWindowTop >= 0 && settings.SettingWindowLeft >= 0)
449+
if (settings.SettingWindowTop == null)
450450
{
451451
Top = settings.SettingWindowTop;
452452
Left = settings.SettingWindowLeft;

0 commit comments

Comments
 (0)