diff options
| author | Pietro Gagliardi <[email protected]> | 2014-08-30 11:07:53 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-08-30 11:07:53 -0400 |
| commit | fecf53827ac7e697c1f36b4db11157828e68b1b9 (patch) | |
| tree | 1e73f3dc867d80dcb13c4c6b7499cba479266960 | |
| parent | b9ea3714a6034e13040f626e0f86b21761ee9d2e (diff) | |
More future plans.
| -rw-r--r-- | redo/future | 1 | ||||
| -rw-r--r-- | redo/table.go | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/redo/future b/redo/future index 696aced..6b189ec 100644 --- a/redo/future +++ b/redo/future @@ -23,6 +23,7 @@ Area keyboard scrolling OpenTextAreaAt() to allow editing of text blocks from within Areas (only after I add TextArea; it will use TextAreas themselves, rather than providing its own) OpenTextFieldAt(): more platform-specific finished editing options; escape key for cancelling too? + bounds checking in Select() Tree Mac OS X: make sure newScrollView() has the correct parameters for Table and Tree (and that Area has the appropriate ones from both) diff --git a/redo/table.go b/redo/table.go index 83baadd..846378d 100644 --- a/redo/table.go +++ b/redo/table.go @@ -44,7 +44,6 @@ type Table interface { // Selected and Select get and set the currently selected item in the Table. // Selected returns -1 if no item is selected. // Pass -1 to Select to deselect all items. - // TODO bounds checking Selected() int Select(index int) |
