From edc5542ee6c1aa2fbe46403715712e5dabdfe1d2 Mon Sep 17 00:00:00 2001 From: Aparajita Fishman Date: Fri, 23 Jul 2010 18:02:51 -0400 Subject: [PATCH] Fix for issue #748 --- AppKit/CPTableColumn.j | 3 +++ 1 file changed, 3 insertions(+) diff --git a/AppKit/CPTableColumn.j b/AppKit/CPTableColumn.j index 17b731d18..a6ebed652 100644 --- a/AppKit/CPTableColumn.j +++ b/AppKit/CPTableColumn.j @@ -289,6 +289,9 @@ CPTableColumnUserResizingMask = 1 << 1; var newDataView = [CPKeyedUnarchiver unarchiveObjectWithData:_dataViewData[dataViewUID]]; newDataView.identifier = dataViewUID; + // make sure only we have control over the size and placement + [newDataView setAutoresizingMask:CPViewNotSizable]; + return newDataView; }