We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://i.gyazo.com/c185f613865f1ca38e36b02cbefc7044.gif https://i.gyazo.com/bfde64ab95e0c0f4844d533fc246cba7.gif
The trackbar jumps when clicked on. Appears to be made worse when the starting offset is non-zero. Replicate with the setting:
REF: https://discord.com/channels/531175899588984842/599270434642460753/892811075966349353
The text was updated successfully, but these errors were encountered:
I tried to mitigate this by subtracting 29 from _dragOffset in https://github.com/blish-hud/Blish-HUD/blob/dev/Blish%20HUD/Controls/TrackBar.cs#L96 like so: var relMousePos = this.RelativeMousePosition - new Point(_dragOffset - 29, 0);
_dragOffset
var relMousePos = this.RelativeMousePosition - new Point(_dragOffset - 29, 0);
This seems to lessen the effect but the closer you get to the left or right of the bar there will be a tiny drift to either side.
I will investigate this further.
Sorry, something went wrong.
Found part of the issue: If a MinValue other than 0 is specified, then this would be the wrong slider offset as seen in the examples above.
wrong
Working on a fix now.
Merge pull request #556 from entrhopi/fix/trackbar-values
1aa5894
Fixed TrackBar value generation/tracking #484
Closed by #556!
No branches or pull requests
https://i.gyazo.com/c185f613865f1ca38e36b02cbefc7044.gif
https://i.gyazo.com/bfde64ab95e0c0f4844d533fc246cba7.gif
The trackbar jumps when clicked on. Appears to be made worse when the starting offset is non-zero. Replicate with the setting:
REF: https://discord.com/channels/531175899588984842/599270434642460753/892811075966349353
The text was updated successfully, but these errors were encountered: