Windows10 clicking moves the slider towards the mouse click, often jumping past it.
Open
@spdegabrielle is already working on this.
Since Nov 25, 2021.
- Dominant language
- Racket
- Stars
- 68
- Forks
- 82
- PR merge metrics
- No merged PRs in 30d
Description
On macOS the slider program below moves the slider to the mouse position on the mouse click.
On Windows10 clicking moves the slider towards the mouse click, often jumping past it.

click-hold works as expected
#lang racket/gui
(define my-frame
(new frame%
[label "my-frame"]
[min-width 800] [min-height 200]))
(new slider%
[label "label"]
[min-value 0]
[max-value 100]
[parent my-frame])
(send my-frame show #true)
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Assessment
This issue has not been assessed yet.