summaryrefslogtreecommitdiff
path: root/geom.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-02-02 13:05:42 -0600
committerJeff Carr <[email protected]>2025-02-02 15:04:07 -0600
commitd4b7cd32d47ab0307c650f711f784575ad0d8e2d (patch)
tree18f8d174d27623dc55f80984786c8e4c7de0450a /geom.go
parentad6bb0f1c1eab46d76d369bfb3453cecff254a96 (diff)
goimport lintv1.1.28
Diffstat (limited to 'geom.go')
-rw-r--r--geom.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/geom.go b/geom.go
index f76ea34..a4688db 100644
--- a/geom.go
+++ b/geom.go
@@ -1,14 +1,14 @@
package widget
type Geom struct {
- Left any
- Right any
- Top any
+ Left any
+ Right any
+ Top any
Bottom any
}
type Size struct {
- Width any
+ Width any
Height any
}
@@ -25,6 +25,7 @@ Horizontal means layout widgets like books on a bookshelf
---------------------------------
Vertical means layout widgets like books in a stack
+
----------
| Widget |
----------
@@ -51,5 +52,4 @@ func (s Orientation) String() string {
default:
return "Horizontal"
}
- return "Horizontal"
}