Skip to content

Commit

Permalink
Fix annoying reordering of imports
Browse files Browse the repository at this point in the history
  • Loading branch information
andydotxyz committed May 4, 2021
1 parent 3319a52 commit 3e2e976
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
14 changes: 8 additions & 6 deletions internal/driver/glfw/window.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,21 @@ package glfw
import (
"bytes"
"context"
"image"
_ "image/png" // for the icon
"runtime"
"sync"
"time"

"github.com/go-gl/glfw/v3.3/glfw"

"fyne.io/fyne/v2"
"fyne.io/fyne/v2/driver/desktop"
"fyne.io/fyne/v2/internal"
"fyne.io/fyne/v2/internal/cache"
"fyne.io/fyne/v2/internal/driver"
"fyne.io/fyne/v2/internal/painter/gl"
"fyne.io/fyne/v2/theme"
"github.com/go-gl/glfw/v3.3/glfw"
"image"
_ "image/png" // for the icon
"runtime"
"sync"
"time"
)

const (
Expand Down
3 changes: 2 additions & 1 deletion internal/driver/glfw/window_windows.go
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
package glfw

import (
"fyne.io/fyne/v2"
"runtime"
"syscall"
"unsafe"

"fyne.io/fyne/v2"
)

func (w *window) platformResize(canvasSize fyne.Size) {
Expand Down

0 comments on commit 3e2e976

Please sign in to comment.