mirror of
https://invent.kde.org/system/dolphin
synced 2024-11-05 18:47:12 +00:00
Accessibility: Fix cellAt
Row and column are 0 based, the cell function uses 1 based indices.
This commit is contained in:
parent
e6fd6f32b4
commit
174749c349
1 changed files with 1 additions and 1 deletions
|
@ -46,7 +46,7 @@ QVariant KItemListViewAccessible::invokeMethodEx(Method, int, const QVariantList
|
|||
|
||||
QAccessibleTable2CellInterface* KItemListViewAccessible::cellAt(int row, int column) const
|
||||
{
|
||||
return cell(column * (row-1) + column) ;
|
||||
return cell(column*row + column + 1);
|
||||
}
|
||||
|
||||
QAccessibleInterface* KItemListViewAccessible::caption() const
|
||||
|
|
Loading…
Reference in a new issue