Bug 564705. Don't try to insert a separating space at the start of the XUL textbox title. r=neil

This commit is contained in:
Timothy Nikkel 2010-05-11 19:30:42 -05:00
Родитель f4f12f1dd1
Коммит 5fa5002e00
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -876,7 +876,7 @@ nsTextBoxFrame::UpdateAccessTitle()
} }
if (InsertSeparatorBeforeAccessKey() && if (InsertSeparatorBeforeAccessKey() &&
!NS_IS_SPACE(mTitle[offset - 1])) { offset > 0 && !NS_IS_SPACE(mTitle[offset - 1])) {
mTitle.Insert(' ', offset); mTitle.Insert(' ', offset);
offset++; offset++;
} }