Skip to content

Commit

Permalink
Minor
Browse files Browse the repository at this point in the history
  • Loading branch information
rampaa committed Oct 10, 2024
1 parent b39554b commit ac3a280
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion JL.Windows/Utilities/PopupWindowUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public static TextBox CreateTextBox(string name, string text, Brush foregroundBr

// Scrolling doesn’t work when touching a TextBox inside a ListView
// unless the TextBox's PanningMode is set to None explicitly.
ScrollViewer.SetPanningMode(textBox, PanningMode.None);
textBox.SetValue(ScrollViewer.PanningModeProperty, PanningMode.None);

return textBox;
}
Expand Down

0 comments on commit ac3a280

Please sign in to comment.