From 964b1602330223191cc4e8a7bf92242d34fa064f 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 59b44e97e..425afec23 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; }