Skip to content

Commit

Permalink
Merge branch 'develop' of github.com:fyne-io/fyne into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
andydotxyz committed Jun 2, 2020
2 parents 9c0170e + edabfb6 commit 81ac346
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions canvas/base.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
// Package canvas contains all of the primitive CanvasObjects that make up a Fyne GUI
//
// The types implemented in this package are used as building blocks in order
// to build higher order functionality. These types are designed to be
// non-interactive, by design. If additional functonality is required,
// it's usually a sign that this type should be used as part of a custom
// Widget.
package canvas // import "fyne.io/fyne/canvas"

import (
Expand Down
2 changes: 1 addition & 1 deletion window.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,6 @@ type Window interface {
// This can be useful to set a key handler for the window, for example.
Canvas() Canvas

//Clipboard returns the system clipboard
// Clipboard returns the system clipboard
Clipboard() Clipboard
}

0 comments on commit 81ac346

Please sign in to comment.