[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Another fix for NSTableView
From: |
Fred Kiefer |
Subject: |
Re: Another fix for NSTableView |
Date: |
Sat, 07 Jan 2006 02:08:38 +0100 |
User-agent: |
Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050921 |
Andreas Höschler wrote:
> the default intercellSpacing is { 3, 2} not {2, 3}. However, on GNUstep
> even 3 is not enough. I would suggest to make the following modification.
>
> _intercellSpacing = NSMakeSize (2.0, 3.0);
>
> is replaced with
>
> _intercellSpacing = NSMakeSize (5.0, 2.0);
>
This patch is fine for me, but I am still wondering after changing this
in my private code, why I don't see a visible change? What should I expect?
Fred