# HG changeset patch # User bsmith@81767d24-ef19-dc11-ae90-00e081727c95 # Date 1300338536 0 # Node ID 590eebc9b61ffc701a3c118e41a9759295848dcc # Parent cf447811d3224bd7a1581630a3a0037e0d6390ef Preset the splitbar percent to 50% since Leopard doesn't set it automatically. diff -r cf447811d322 -r 590eebc9b61f mac/dw.m --- a/mac/dw.m Thu Mar 17 04:48:06 2011 +0000 +++ b/mac/dw.m Thu Mar 17 05:08:56 2011 +0000 @@ -4917,6 +4917,8 @@ { [split setVertical:YES]; } + /* Set the default percent to 50% split */ + [split setPercent:50.0]; /* [split setTag:cid]; Why doesn't this work? */ DW_MUTEX_UNLOCK; return split;