Fix typos

This commit is contained in:
Jack251970 2025-03-29 16:41:11 +08:00
parent 356f229fd4
commit cd01260ee9
2 changed files with 2 additions and 2 deletions

View file

@ -565,7 +565,7 @@ namespace Flow.Launcher.Core.Resource
} }
// Apply the resize border thickness to the window chrome // Apply the resize border thickness to the window chrome
SetResizeBoarderThickness(windowChrome, _settings.KeepMaxResults); SetResizeBorderThickness(windowChrome, _settings.KeepMaxResults);
} }
} }

View file

@ -1097,7 +1097,7 @@ namespace Flow.Launcher
ResizeMode = _settings.KeepMaxResults ? ResizeMode.NoResize : ResizeMode.CanResize; ResizeMode = _settings.KeepMaxResults ? ResizeMode.NoResize : ResizeMode.CanResize;
if (WindowChrome.GetWindowChrome(this) is WindowChrome windowChrome) if (WindowChrome.GetWindowChrome(this) is WindowChrome windowChrome)
{ {
_theme.SetResizeBoarderThickness(windowChrome, _settings.KeepMaxResults); _theme.SetResizeBorderThickness(windowChrome, _settings.KeepMaxResults);
} }
} }