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)