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 52daef5 commit 85b8f95Copy full SHA for 85b8f95
src/Files.App/Services/Content/RealTimeLayoutService.cs
@@ -10,7 +10,7 @@ namespace Files.App.Services.Content
10
internal sealed class RealTimeLayoutService : IRealTimeLayoutService
11
{
12
private readonly List<(WeakReference<object> Reference, Action Callback)> _callbacks = [];
13
- private static FlowDirection FlowDirection => CultureInfo.CurrentUICulture.TextInfo.IsRightToLeft ? FlowDirection.RightToLeft : FlowDirection.LeftToRight;
+ public static FlowDirection FlowDirection => CultureInfo.CurrentUICulture.TextInfo.IsRightToLeft ? FlowDirection.RightToLeft : FlowDirection.LeftToRight;
14
15
public void UpdateCulture(CultureInfo culture)
16
0 commit comments