We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
fyne-io
andydotxyz
toaster
Jacalz
changkun
Learn more about funding links in repositories.
Report abuse
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
Steps to reproduce the behaviour:
https://youtu.be/P_RNw4Idue0
package main import ( "fyne.io/fyne" "fyne.io/fyne/app" "fyne.io/fyne/widget" "time" ) func main() { a := app.New() w := a.NewWindow("Hello") w.SetContent(widget.NewVBox( widget.NewLabel("Hello Fyne!"), widget.NewButton("Hide", func() { w.Hide() time.AfterFunc(2*time.Second, func() { w.Show() }) }), )) w.Resize(fyne.NewSize(480, 320)) w.ShowAndRun() }
GO111MODULE="on" GOARCH="amd64" GOBIN="" GOCACHE="/home/XXX/.cache/go-build" GOENV="/home/XXX/.config/go/env" GOEXE="" GOFLAGS="" GOHOSTARCH="amd64" GOHOSTOS="linux" GOINSECURE="" GONOPROXY="" GONOSUMDB="" GOOS="linux" GOPATH="/home/XXX/Applications/Golang/Path" GOPRIVATE="" GOPROXY="https://goproxy.io,direct" GOROOT="/home/XXX/Applications/Golang/Root" GOSUMDB="sum.golang.org" GOTMPDIR="" GOTOOLDIR="/home/XXX/Applications/Golang/Root/pkg/tool/linux_amd64" GCCGO="gccgo" AR="ar" CC="gcc" CXX="g++" CGO_ENABLED="1" GOMOD="/dev/null" CGO_CFLAGS="-g -O2" CGO_CPPFLAGS="" CGO_CXXFLAGS="-g -O2" CGO_FFLAGS="-g -O2" CGO_LDFLAGS="-g -O2" PKG_CONFIG="pkg-config" GOGCCFLAGS="-fPIC -m64 -pthread -fmessage-length=0 -fdebug-prefix-map=/tmp/go-build184922356=/tmp/go-build -gno-record-gcc-switches"
fyne version: a82c328 desktop: ubuntu18.04
The text was updated successfully, but these errors were encountered:
Fix position of a window that is re-shown
fa30f63
Also we don't have to recreate the window either, waste of CPU Fixes fyne-io#1116
Oops, I forgot the pull request - this is now open
Sorry, something went wrong.
33c346c
Also we don't have to recreate the window either, waste of CPU Fixes #1116
On develop for testing
No branches or pull requests
Describe the bug:
To Reproduce:
Steps to reproduce the behaviour:
Screenshots:
https://youtu.be/P_RNw4Idue0
Example code:
Device (please complete the following information):
fyne version: a82c328
desktop: ubuntu18.04
The text was updated successfully, but these errors were encountered: