Skip to content

Commit 7728bda

Browse files
committed
Code Quality: Fixed threshold for sidebar placeholder
1 parent ba4fb0f commit 7728bda

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Files.App/Views/MainPage.xaml.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ private void PaneSplitter_ManipulationCompleted(object sender, ManipulationCompl
441441

442442
private void ApplySidebarWidthState()
443443
{
444-
if (UserSettingsService.AppearanceSettingsService.SidebarWidth > 340)
444+
if (UserSettingsService.AppearanceSettingsService.SidebarWidth > 360)
445445
VisualStateManager.GoToState(this, "LargeSidebarWidthState", true);
446446
else if (UserSettingsService.AppearanceSettingsService.SidebarWidth > 280)
447447
VisualStateManager.GoToState(this, "MediumSidebarWidthState", true);

0 commit comments

Comments
 (0)