mikedocy
I wish there was a setting to disable the mouse wheel from changing volume and pan in console view.
I only want the mouse wheel to scroll the screen in console view.
Try this Autohotkey script:
SetTitleMatchMode RegEx
#IfWinActive, ahk_exe i)SONAR.*exe
WheelDown::
ControlGetFocus, x, A
If InStr(x, "CMixerInspectorView")
Return
Send {WheelDown}
Return
WheelUp::
ControlGetFocus, x, A
If InStr(x, "CMixerInspectorView")
Return
Send {WheelUp}
Return