mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 06:11:37 +00:00
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:
parent
1d3c24e51b
commit
c109fe2321
@ -876,7 +876,7 @@ nsTextBoxFrame::UpdateAccessTitle()
|
||||
}
|
||||
|
||||
if (InsertSeparatorBeforeAccessKey() &&
|
||||
!NS_IS_SPACE(mTitle[offset - 1])) {
|
||||
offset > 0 && !NS_IS_SPACE(mTitle[offset - 1])) {
|
||||
mTitle.Insert(' ', offset);
|
||||
offset++;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user