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 cb4dc66 commit 24dfc22Copy full SHA for 24dfc22
Microsoft.Toolkit.Uwp.UI.Controls/GridSplitter/GridSplitter.Events.cs
@@ -148,6 +148,11 @@ protected override void OnManipulationDelta(ManipulationDeltaRoutedEventArgs e)
148
var horizontalChange = e.Delta.Translation.X;
149
var verticalChange = e.Delta.Translation.Y;
150
151
+ if (this.FlowDirection == FlowDirection.RightToLeft)
152
+ {
153
+ horizontalChange *= -1;
154
+ }
155
+
156
if (_resizeDirection == GridResizeDirection.Columns)
157
{
158
if (HorizontalMove(horizontalChange))
0 commit comments