Skip to content

Commit

Permalink
Merge branch 'develop' into refactoring/focus_handling
Browse files Browse the repository at this point in the history
  • Loading branch information
toaster committed Sep 14, 2020
2 parents 474f279 + b4978f2 commit 10aa3ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion layout/gridwraplayout.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ type gridWrapLayout struct {
// NewGridWrapContainer creates a new container with the specified objects and using the gridwrap layout.
// Every element will be resized to the size parameter and the content will arrange along a row and flow to a
// new row if the elements don't fit.
func NewGridWrapContainers(size fyne.Size, objects ...fyne.CanvasObject) *fyne.Container {
func NewGridWrapContainer(size fyne.Size, objects ...fyne.CanvasObject) *fyne.Container {
return fyne.NewContainerWithLayout(NewGridWrapLayout(size), objects...)
}

Expand Down

0 comments on commit 10aa3ac

Please sign in to comment.