mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-25 20:52:44 +01:00
More scroll wheel direction
This commit is contained in:
parent
19bcc57bf9
commit
850122a304
@ -333,7 +333,12 @@ namespace Nikse.SubtitleEdit.Controls
|
||||
var delta = e.Delta;
|
||||
if (Configuration.Settings.VideoControls.WaveformMouseWheelScrollUpIsForward)
|
||||
{
|
||||
delta = -delta;
|
||||
var videoPlayerType = _videoPlayer.GetType();
|
||||
|
||||
if (videoPlayerType == typeof(LibMpvDynamic) || videoPlayerType == typeof(QuartsPlayer))
|
||||
{
|
||||
delta = -delta;
|
||||
}
|
||||
}
|
||||
|
||||
var newPosition = CurrentPosition - delta / 256.0;
|
||||
|
Loading…
Reference in New Issue
Block a user