From 300989d23bdfe12efa63c32cd4b788c00e8a5716 Mon Sep 17 00:00:00 2001 From: Drew Weymouth Date: Wed, 26 Jun 2024 07:30:54 -0700 Subject: [PATCH] add early return to avoid double refresh on mobile --- internal/widget/scroller.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/widget/scroller.go b/internal/widget/scroller.go index 15b7b217a2..a846043f23 100644 --- a/internal/widget/scroller.go +++ b/internal/widget/scroller.go @@ -86,6 +86,7 @@ func (b *scrollBar) DragEnd() { if fyne.CurrentDevice().IsMobile() { b.area.MouseOut() + return } b.area.Refresh() }