mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-30 04:10:38 +00:00
Get the previous column when loading a column in item-based mode in _performLoadOfColumn
This commit is contained in:
parent
782321e063
commit
ab737b81d5
1 changed files with 1 additions and 1 deletions
|
@ -3288,7 +3288,7 @@ static BOOL browserUseBezels;
|
|||
}
|
||||
else
|
||||
{
|
||||
NSInteger col = column > 1 ? column - 1 : column;
|
||||
NSInteger col = column > 0 ? column - 1 : column;
|
||||
|
||||
bc = [_browserColumns objectAtIndex: col];
|
||||
if (bc != nil)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue