turned bilnking off when the attribute goes away

This commit is contained in:
peterl%netscape.com 1998-11-06 00:50:27 +00:00
Родитель a76e7fffdd
Коммит eb27d38c27
2 изменённых файлов: 12 добавлений и 0 удалений

Просмотреть файл

@ -1616,6 +1616,12 @@ TextFrame::Reflow(nsIPresContext& aPresContext,
gTextBlinker->AddFrame(this);
}
}
else {
if (0 != (mFlags & TEXT_BLINK_ON)) {
mFlags &= ~TEXT_BLINK_ON;
gTextBlinker->RemoveFrame(this);
}
}
PRBool wrapping = NS_STYLE_WHITESPACE_NORMAL == ts.mText->mWhiteSpace;
PRBool firstLetterOK = lineLayout.GetFirstLetterStyleOK();

Просмотреть файл

@ -1616,6 +1616,12 @@ TextFrame::Reflow(nsIPresContext& aPresContext,
gTextBlinker->AddFrame(this);
}
}
else {
if (0 != (mFlags & TEXT_BLINK_ON)) {
mFlags &= ~TEXT_BLINK_ON;
gTextBlinker->RemoveFrame(this);
}
}
PRBool wrapping = NS_STYLE_WHITESPACE_NORMAL == ts.mText->mWhiteSpace;
PRBool firstLetterOK = lineLayout.GetFirstLetterStyleOK();