diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2024-05-10 13:18:04 -0400 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2024-05-10 13:18:04 -0400 |
| commit | 39c1d74160b268cf8b573b3c0d5e5ce6b0920ee7 (patch) | |
| tree | 869796e7dd437dffe219ad395e2be1019db743c1 /gui | |
| parent | 15c9618700dc681e6b94e83a1aaeea6cbcd0c2c2 (diff) | |
| download | volute-39c1d74160b268cf8b573b3c0d5e5ce6b0920ee7.zip | |
remove whitespace in imports
Diffstat (limited to 'gui')
| -rw-r--r-- | gui/widget/image.go | 3 | ||||
| -rw-r--r-- | gui/widget/input.go | 3 | ||||
| -rw-r--r-- | gui/widget/label.go | 2 | ||||
| -rw-r--r-- | gui/widget/output.go | 3 | ||||
| -rw-r--r-- | gui/widget/tree.go | 3 |
5 files changed, 5 insertions, 9 deletions
diff --git a/gui/widget/image.go b/gui/widget/image.go index daf76aa..a7041fe 100644 --- a/gui/widget/image.go +++ b/gui/widget/image.go @@ -1,11 +1,10 @@ package widget import ( - "sync" - xdraw "golang.org/x/image/draw" "image" "image/draw" + "sync" "volute/gui" "volute/gui/win" diff --git a/gui/widget/input.go b/gui/widget/input.go index f6c1dbc..954e7db 100644 --- a/gui/widget/input.go +++ b/gui/widget/input.go @@ -2,10 +2,9 @@ package widget import ( "fmt" - "sync" - "image" "image/draw" + "sync" "volute/gui" "volute/gui/text" diff --git a/gui/widget/label.go b/gui/widget/label.go index cc2010f..ed2d24c 100644 --- a/gui/widget/label.go +++ b/gui/widget/label.go @@ -1,9 +1,9 @@ package widget import ( - "sync" "image" "image/draw" + "sync" "volute/gui" "volute/gui/text" diff --git a/gui/widget/output.go b/gui/widget/output.go index 0d03c0c..cfbdade 100644 --- a/gui/widget/output.go +++ b/gui/widget/output.go @@ -2,10 +2,9 @@ package widget import ( "fmt" - "sync" - "image" "image/draw" + "sync" "volute/gui" "volute/gui/text" diff --git a/gui/widget/tree.go b/gui/widget/tree.go index 25ecb2e..14d7b9d 100644 --- a/gui/widget/tree.go +++ b/gui/widget/tree.go @@ -1,10 +1,9 @@ package widget import ( - "sync" - "image" "image/color" + "sync" "volute/gui" "volute/gui/layout" |