Skip to content

Commit 65a3814

Browse files
committed
Update NativeFolderView
1 parent 50cd70f commit 65a3814

File tree

2 files changed

+24
-4
lines changed

2 files changed

+24
-4
lines changed

src/Files.App.Storage/Storables/Native/NativeFolderView.cs

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,23 @@ namespace Files.App.Storage.Storables
99
public class NativeFolderView : IFolderView
1010
{
1111
public int GetSpacing()
12-
{}
12+
{
13+
return 0;
14+
}
1315

1416
public int GetThumbnailSize()
15-
{}
17+
{
18+
return 0;
19+
}
1620

1721
public FolderViewMode GetViewMode()
18-
{}
22+
{
23+
return 0;
24+
}
1925

2026
public uint GetItemsCount()
21-
{}
27+
{
28+
return 0;
29+
}
2230
}
2331
}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
// Copyright (c) 2023 Files Community
2+
// Licensed under the MIT License. See the LICENSE.
3+
4+
namespace Files.Core.Storage
5+
{
6+
public enum FolderViewColumnAlignment
7+
{
8+
Left,
9+
Center,
10+
Right,
11+
}
12+
}

0 commit comments

Comments
 (0)