Scale Tree.INCREMENT by zoom level instead of using fixed pixels #2439
+1
−1
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The Tree.INCREMENT constant defines how many pixels the horizontal scrollbar jumps when clicking the left or right buttons. Previously, this was a fixed pixel value, which made scrolling feel too small on high-DPI monitors.
This change redefines INCREMENT in points and converts it to pixels based on the current zoom level, ensuring consistent scrolling increments across different display scales.
How to Test
Result ( Please click on the gifs below to see it running )
Before :

**After : **

Maybe it's harder to notice but now scrolling using button jumps 10 pixels ahead instead of 5 due to 200% zoom (double the size) and hence it jumps now as per zoom level.