/branches/Version133x/Scribus/scribus/pdflib.cpp |
---|
3218,6 → 3218,7 |
tabDist += ite->lineWidth() / 2.0; |
if (ite->itemType() == PageItem::TextFrame) |
tmp += "BT\n"; |
double colLeft = tabDist; |
// Loop over each character (!) in the pageItem... |
for (uint d = 0; d < ite->MaxChars; ++d) |
{ |
3233,7 → 3234,10 |
else |
tTabValues = doc.docParagraphStyles[hl->cab].TabValues; |
if (hl->cstyle & 16384) |
{ |
tabDist = colLeft; |
tabCc = 0; |
} |
if ((hl->ch == QChar(9)) && (tTabValues.count() != 0)) |
{ |
if ((!tTabValues[tabCc].tabFillChar.isNull()) && (tabCc < tTabValues.count())) |
/branches/Version133x/Scribus/scribus/pslib.cpp |
---|
2248,7 → 2248,7 |
double tabDist = ite->textToFrameDistLeft(); |
if (ite->lineColor() != CommonStrings::None) |
tabDist += ite->lineWidth() / 2.0; |
double colLeft = tabDist; |
for (uint d = 0; d < ite->MaxChars; ++d) |
{ |
hl = ite->itemText.at(d); |
2263,7 → 2263,10 |
else |
tTabValues = Doc->docParagraphStyles[hl->cab].TabValues; |
if (hl->cstyle & 16384) |
{ |
tabDist = colLeft; |
tabCc = 0; |
} |
if ((hl->ch == QChar(9)) && (tTabValues.count() != 0)) |
{ |
if ((!tTabValues[tabCc].tabFillChar.isNull()) && (tabCc < tTabValues.count())) |