Better fix for opening directories

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@5326 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 1999-11-29 17:22:39 +00:00
parent 2f851bceef
commit 9f2b81c6f2
2 changed files with 25 additions and 5 deletions

View file

@ -1224,6 +1224,9 @@
// Nothing selected
if (i == NSNotFound)
return nil;
// Nothing selected in rightmost column
if (i < [self lastColumn])
return nil;
matrix = [self matrixInColumn: i];
return [matrix selectedCells];