Skip to content
New issue

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

Windows10 clicking moves the slider towards the mouse click, often jumping past it. #253

Open
spdegabrielle opened this issue Nov 25, 2021 · 0 comments
Assignees

Comments

@spdegabrielle
Copy link
Sponsor Member

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.

slider

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)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant