RE: NSTextFields will not fully justify in 10.11

2016-01-24 Thread Lee Ann Rucker
-dev-bounces+lrucker=vmware@lists.apple.com] on behalf of Trygve Inda [cocoa...@xericdesign.com] Sent: Saturday, January 23, 2016 11:38 PM To: Jens Alfke Cc: Cocoa-Dev List Subject: Re: NSTextFields will not fully justify in 10.11 > >> On Jan 23, 2016, at 7:44 PM, Trygve In

Re: NSTextFields will not fully justify in 10.11

2016-01-24 Thread Trygve Inda
> If it's autolayout, double-check it, especially the priorities; it might be > hugging more than you expect. What does the UI layout debugger show? I've > found some layout surprises that way. > It is not using Auto-Layout. I tried creating one with

Re: NSTextFields will not fully justify in 10.11

2016-01-24 Thread Quincey Morris
On Jan 24, 2016, at 07:24 , Trygve Inda wrote: > > It is not using Auto-Layout. I tried creating one with Auto-Layout and it > doesn't work either. For interest’s sake: a. If you specify the text field as being left justified instead of fully justified, does it wrap

Re: NSTextFields will not fully justify in 10.11

2016-01-24 Thread Trygve Inda
> On Jan 24, 2016, at 07:24 , Trygve Inda wrote: >> >> It is not using Auto-Layout. I tried creating one with Auto-Layout and it >> doesn't work either. > > For interest’s sake: > > a. If you specify the text field as being left justified instead of fully > justified,

NSTextFields will not fully justify in 10.11

2016-01-23 Thread Trygve Inda
When running in 10.11, my fully justified text fields are no longer so... They are left justified only. Is there a fix for this? Trygve ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments

Re: NSTextFields will not fully justify in 10.11

2016-01-23 Thread Jens Alfke
> On Jan 23, 2016, at 7:44 PM, Trygve Inda wrote: > > When running in 10.11, my fully justified text fields are no longer so... > They are left justified only. > > Is there a fix for this? Use an NSTextView instead? It’s generally better to use that class when the

Re: NSTextFields will not fully justify in 10.11

2016-01-23 Thread Trygve Inda
> >> On Jan 23, 2016, at 7:44 PM, Trygve Inda wrote: >> >> When running in 10.11, my fully justified text fields are no longer so... >> They are left justified only. >> >> Is there a fix for this? > > Use an NSTextView instead? It’s generally better to use that class