+fix: Add workaround to fix horizontal mouse wheel with Logitech Options utility

This commit is contained in:
Artem Tarasov 2022-02-20 17:01:57 +03:00
parent 8467f05982
commit e61bc62e51

View File

@ -1665,7 +1665,7 @@ sptr_t ScintillaWin::MouseMessage(unsigned int iMessage, uptr_t wParam, sptr_t l
int const xPos = std::min(xOffset + charsToScroll, scrollWidth - static_cast<int>(rcText.Width()) + 1);
HorizontalScrollTo(xPos);
}
return 0;
return 1;
// <<<<<<<<<<<<<<< END NON STD SCI PATCH <<<<<<<<<<<<<<<
}