More TODOs.

This commit is contained in:
Pietro Gagliardi 2015-02-19 23:52:18 -05:00
parent 7a26870c1a
commit 0bd127a3ed
2 changed files with 6 additions and 0 deletions

View File

@ -2,6 +2,11 @@
package ui package ui
// TODO
// - why are we not getting keyboard input (focus?) on a mouse click?
// - are we getting keyboard input (focus?) on tab?
// - random freezes on Windows 7 when resizing headers or clicking new rows; likely another package ui infrastructure issue though...
import ( import (
"fmt" "fmt"
"reflect" "reflect"

View File

@ -16,6 +16,7 @@ static void addColumn(struct table *t, WPARAM wParam, LPARAM lParam)
// TODO send a notification for all rows? // TODO send a notification for all rows?
} }
// TODO what happens if the currently selected row is lost?
static void setRowCount(struct table *t, intptr_t rc) static void setRowCount(struct table *t, intptr_t rc)
{ {
intptr_t old, i; intptr_t old, i;