-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
ScrollEvent.Position and ScrollEvent.AbsolutePosition is 0,0 #2199
Comments
I see that you have chosen the bug template but discarded it. Can you please use the template (bug in this case) when opening issues? It is there to allow us to get enough, and the correct, information to be able to reproduce and help fix the issues. |
Sorry about the. Describe the bug:I create Scrolled(*fyne.ScrollEvent) method on my widget. It gets called when I scroll the mouse wheel, but the Position and AbsolutePosition fields of the ScrollEvent seem to be all zeroes. To Reproduce:Steps to reproduce the behaviour:
Screenshots:Not - applicable Example code:package main
import (
"fmt"
"fyne.io/fyne/v2"
"fyne.io/fyne/v2/app"
"fyne.io/fyne/v2/widget"
)
type Widget struct {
widget.BaseWidget
}
func (w *Widget) CreateRenderer() fyne.WidgetRenderer {
return w
}
func (w *Widget) Scrolled(event *fyne.ScrollEvent) {
fmt.Println(event.Position, event.AbsolutePosition)
}
func (w *Widget) Layout(size fyne.Size) {}
func (w *Widget) MinSize() fyne.Size { return fyne.Size{640, 480} }
func (w *Widget) Refresh() {}
func (w *Widget) Destroy() {}
func (w *Widget) Objects() []fyne.CanvasObject { return nil }
func main() {
a := app.New()
win := a.NewWindow("Test scroll")
w := &Widget{}
w.ExtendBaseWidget(w)
win.SetContent(w)
win.ShowAndRun()
} Device (please complete the following information):
|
Thank you. Very much appreciated 🙂 |
Fix in PR #2204, I hope we can land this for v2.0.3 |
I create Scrolled(*fyne.ScrollEvent) method on my widget. It gets called when I scroll the mouse wheel, but the Position and AbsolutePosition fields of the ScrollEvent seem to be all zeroes.
I was expecting to find mouse position there.
OS: Linux (Ubuntu 20.04)
Fyne version: v2.0.2
The text was updated successfully, but these errors were encountered: