Dax89 / QHexView

A versatile Hexadecimal widget for Qt5
MIT License
323 stars 101 forks source link

Natural scrolling #81

Closed JohannesWilde closed 3 months ago

JohannesWilde commented 3 months ago

Make scrolled lines proportional to the mouse wheel movement for more natural scrolling experience.

Dax89 commented 3 months ago

Looks nice!

Can you replace std::abs() with their Qt equivalent qAbs()?

The idea is to remove all direct STL dependencies, when possible.

JohannesWilde commented 3 months ago

Sure, no problem. QtGlobal was already included, so qAbs() does not even require an additional include.

Dax89 commented 3 months ago

Merged, thanks!