allow first row to do inline edit

This commit is contained in:
pinkerton%aol.net 2004-02-11 19:14:52 +00:00
Родитель 0ea35c161e
Коммит 214933225c
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -256,7 +256,7 @@
// Only start the editing if the selection didn't change in the meantime
// (e.g. because arrow keys were used to change it).
if (row > 0 && row == [self selectedRow])
if (row >= 0 && row == [self selectedRow])
[self editColumn:mColumnToBeEdited row:row withEvent:nil select:YES];
}