Skip to content

Commit

Permalink
Code quality: Used tab for indentation
Browse files Browse the repository at this point in the history
Co-authored-by: hishitetsu <[email protected]>
  • Loading branch information
Jack251970 and hishitetsu authored Dec 3, 2024
1 parent c61ace3 commit 881b9d1
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions src/Files.App/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -344,18 +344,18 @@ x.tabItem.NavigationParameter.NavigationParameter is PaneNavigationArguments pan
}
}

public bool SetCanWindowToFront(bool canWindowToFront)
{
lock (_canWindowToFrontLock)
{
if (CanWindowToFront != canWindowToFront)
{
CanWindowToFront = canWindowToFront;
return true;
}
return false;
}
}
public bool SetCanWindowToFront(bool canWindowToFront)
{
lock (_canWindowToFrontLock)
{
if (CanWindowToFront != canWindowToFront)
{
CanWindowToFront = canWindowToFront;
return true;
}
return false;
}
}

private const int WM_WINDOWPOSCHANGING = 0x0046;
private void WindowManager_WindowMessageReceived(object? sender, WinUIEx.Messaging.WindowMessageEventArgs e)
Expand Down

0 comments on commit 881b9d1

Please sign in to comment.