You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Upgrading my go-tetris app from tcell v2.7.4 to v2.8.1.
When building with GOOS=js GOARCH=wasm I am getting this compile error about missing GetClipboard in wscreen.go:
GOOS=js GOARCH=wasm go build -o wasm/tetris.wasm
# github.com/gdamore/tcell/v2
../../go/pkg/mod/github.com/gdamore/tcell/[email protected]/wscreen.go:35:33: cannot use t (variable of type *wScreen) as screenImpl value in struct literal: *wScreen does not implement screenImpl (missing method GetClipboard)
If I build without GOOS=js GOARCH=wasm able to build and run successfully.
Upgrading my go-tetris app from tcell v2.7.4 to v2.8.1.
When building with
GOOS=js GOARCH=wasm
I am getting this compile error about missing GetClipboard in wscreen.go:If I build without
GOOS=js GOARCH=wasm
able to build and run successfully.Seems wScreen is missing GetClipboard method.
thanks!
The text was updated successfully, but these errors were encountered: