Get the previous column when loading a column in item-based mode in _performLoadOfColumn

This commit is contained in:
Gregory John Casamento 2024-07-25 08:23:06 -04:00
parent 782321e063
commit ab737b81d5

View file

@ -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)