changeset 857:718b91ac19d2

Disable auto-sizing... I had enabled this during optimize because it produces some nice results.... But when there isn't enough space it causes columns to bunch up. I thought it would just do it when the view resized.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Thu, 31 Mar 2011 21:10:25 +0000
parents 9dc45928a75f
children 80f3e108fa43
files mac/dw.m
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/mac/dw.m	Thu Mar 31 20:58:22 2011 +0000
+++ b/mac/dw.m	Thu Mar 31 21:10:25 2011 +0000
@@ -5300,8 +5300,10 @@
     DW_MUTEX_LOCK;
     DWContainer *cont = handle;
     [cont optimize];
+#if 0
     /* All resizable columns should expand */
     [cont setColumnAutoresizingStyle:NSTableViewUniformColumnAutoresizingStyle];
+#endif
     DW_MUTEX_UNLOCK;
 }