racket / racket/gui

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

Open
#253 0 comments 0 reactions 1 assignee View on GitHub

@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.

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)

Contributor guide

Open the contributing guide

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.