From cc7d50f50599f0cf041357f8e4222c7ebf7c8a4a Mon Sep 17 00:00:00 2001 From: Alexander Ljungberg Date: Fri, 10 Sep 2010 20:26:01 -0400 Subject: [PATCH] Fixed: CPTableView editedRow returned the edited column, not the edited row. --- AppKit/CPTableView.j | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AppKit/CPTableView.j b/AppKit/CPTableView.j index 38c3d9eb6..2c5ac36c2 100644 --- a/AppKit/CPTableView.j +++ b/AppKit/CPTableView.j @@ -1168,7 +1168,7 @@ CPTableViewFirstColumnOnlyAutoresizingStyle = 5; { if (!_editingCellIndex) return -1; - return _editingCellIndex.x; + return _editingCellIndex.y; } //Setting Auxiliary Views