Skip to content

Commit

Permalink
Fix merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
andydotxyz committed Feb 1, 2025
1 parent a8cf5d0 commit 221abeb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
5 changes: 0 additions & 5 deletions internal/driver/common/canvas.go
Original file line number Diff line number Diff line change
Expand Up @@ -492,11 +492,6 @@ type RenderCacheNode struct {
parent *RenderCacheNode
// cache data
minSize fyne.Size
// painterData is some data from the painter associated with the drawn node
// it may for instance point to a GL texture
// it should free all associated resources when released
// i.e. it should not simply be a texture reference integer
painterData any
}

// Obj returns the node object.
Expand Down
4 changes: 2 additions & 2 deletions internal/driver/glfw/clipboard_wasm.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ import (
)

// Declare conformity with Clipboard interface
var _ fyne.Clipboard = clipboard{}
var _ fyne.Clipboard = &clipboard{}

func NewClipboard() fyne.Clipboard {
return clipboard{}
return &clipboard{}
}

// clipboard represents the system clipboard
Expand Down

0 comments on commit 221abeb

Please sign in to comment.