summaryrefslogtreecommitdiff
path: root/area.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-04-10 16:18:53 -0400
committerPietro Gagliardi <[email protected]>2014-04-10 16:18:53 -0400
commit09e92b0eb35e45b1cc18f295b2467ca5703fcca0 (patch)
treeba21a5f1e215fbd1bcc36e7fd976300cf25186f7 /area.go
parent7b8580b12df0a47311200293decbb700a368ba74 (diff)
Documented scrollbars on Listbox and Area to the best of my ability, shuffling the appropriate TODOs around.
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 3fd7cfb..2dc9328 100644
--- a/area.go
+++ b/area.go
@@ -8,7 +8,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; scrollbars are placed automatically should they be needed.
+// 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.
// 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.
//
// To handle events to the Area, an Area must be paired with an AreaHandler.