You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
384 B
14 lines
384 B
using Avalonia.Controls.Presenters; |
|
using Avalonia.Input; |
|
|
|
namespace StabilityMatrix.Avalonia.Controls.Scroll; |
|
|
|
public class BetterScrollContentPresenter : ScrollContentPresenter |
|
{ |
|
protected override void OnPointerWheelChanged(PointerWheelEventArgs e) |
|
{ |
|
if (e.KeyModifiers == KeyModifiers.Control) |
|
return; |
|
base.OnPointerWheelChanged(e); |
|
} |
|
}
|
|
|