We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 669d10a commit 0d9d417Copy full SHA for 0d9d417
src/Files.App/Actions/Show/ToggleSidebarAction.cs
@@ -1,11 +1,13 @@
1
// Copyright (c) 2024 Files Community
2
// Licensed under the MIT License. See the LICENSE.
3
4
+using Files.App.UserControls.Sidebar;
5
+
6
namespace Files.App.Actions
7
{
8
internal sealed class ToggleSidebarAction : ObservableObject, IToggleAction
9
- private readonly ISidebarViewModel SidebarViewModel = Ioc.Default.GetRequiredService<SidebarViewModel>();
10
+ private readonly SidebarViewModel SidebarViewModel = Ioc.Default.GetRequiredService<SidebarViewModel>();
11
12
public string Label
13
=> "ToggleSidebar".GetLocalizedResource();
0 commit comments