summaryrefslogtreecommitdiff
path: root/area.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-04-13 01:59:45 -0400
committerPietro Gagliardi <[email protected]>2014-04-13 02:00:18 -0400
commitdcc21eb0878f2b1a1d1e6f8c3f135d76e1f1fb90 (patch)
tree8a4c52ef89b5f3d404378ce25df6cfa49fec994b /area.go
parent3fc2ed8a2ada0ef7914d684e524838f63eb1cd1a (diff)
Pinned down horizontal scrollbar behavior on Listboxes; also reworded the Area scrollbar behavior sentence a bit to match. Now to actually implement the changes...
Diffstat (limited to 'area.go')
-rw-r--r--area.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/area.go b/area.go
index d320410..eadec19 100644
--- a/area.go
+++ b/area.go
@@ -11,7 +11,7 @@ import (
)
// Area represents a blank canvas upon which programs may draw anything and receive arbitrary events from the user.
-// An Area has an explicit size, represented in pixels, that may be different from the size shown in its Window; Areas have horizontal and vertical scrollbars that are hidden when not needed.
+// An Area has an explicit size, represented in pixels, that may be different from the size shown in its Window; Areas have both horizontal and vertical scrollbars that are hidden when not needed.
// The coordinate system of an Area always has an origin of (0,0) which maps to the top-left corner; all image.Points and image.Rectangles sent across Area's channels conform to this.
// The size of an Area must be at least 1x1 (that is, neither its width nor its height may be zero or negative).
//