Updating documentation for the upcoming 0.29.0 release.

This commit is contained in:
fredkiefer 2021-01-16 20:37:24 +01:00
parent d28fe15d03
commit 5e4ab88aa7
14 changed files with 1903 additions and 1574 deletions

View file

@ -870,10 +870,10 @@ restart: ;
*/
NSArray *tabs = [curParagraphStyle tabStops];
NSTextTab *tab = nil;
float defaultInterval = [curParagraphStyle defaultTabInterval];
CGFloat defaultInterval = [curParagraphStyle defaultTabInterval];
/* Set it to something reasonable if unset */
if (defaultInterval == 0.0) {
defaultInterval = 100.0;
defaultInterval = 100.0;
}
int i, c = [tabs count];
/* Find first tab beyond our current position. */
@ -889,7 +889,9 @@ restart: ;
tab, thus having no effect.
*/
if ([tab location] > p.x + lf->rect.origin.x)
break;
{
break;
}
}
if (i == c)
{