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

Entry inside scroll container has incorrect mouse cursor on drag handles #1172

Closed
Jacalz opened this issue Jul 7, 2020 · 1 comment
Closed
Labels
bug Something isn't working
Milestone

Comments

@Jacalz
Copy link
Member

Jacalz commented Jul 7, 2020

Describe the bug:

Having an entry inside a scroll container leads to the mouse cursor being the text edit style when dragging over the drag handles for the scrolling. This seems incorrect and should possibly be changed to a drag style mouse.

To Reproduce:

Steps to reproduce the behaviour using example code:

  1. Type something into the entry.
  2. Drag using the drag handles.

Screenshots:

incorrect-drag-handles

Example code:

package main

import (
	"fyne.io/fyne/app"
	"fyne.io/fyne/widget"
)

func main() {
	a := app.New()
	w := a.NewWindow("Scroll handles wrong")

	w.SetContent(widget.NewScrollContainer(widget.NewMultiLineEntry()))
	w.ShowAndRun()
}

Device (please complete the following information):

  • OS: Solus (linux distro)
  • Version: Linux Kernel 5.6.18
  • Go version: 1.14.3
  • Fyne version: 1.3.0
@andydotxyz andydotxyz added the bug Something isn't working label Jul 7, 2020
@andydotxyz andydotxyz added this to the 1.3.x milestone Jul 7, 2020
andydotxyz added a commit to andydotxyz/fyne that referenced this issue Jul 16, 2020
@andydotxyz
Copy link
Member

Available on develop for testing

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants