зеркало из https://github.com/mozilla/gecko-dev.git
Bug 260563. Put space before parenthesized appended accesskey, it looks nicer (trivial patch). r=dbaron, sr=pkwarren
This commit is contained in:
Родитель
c48a2a1a00
Коммит
ec9d7c97c6
|
@ -692,7 +692,11 @@ nsTextBoxFrame::UpdateAccessTitle()
|
|||
if (( !FindInReadable(mAccessKey, mTitle, nsCaseInsensitiveStringComparator()))
|
||||
|| AlwaysAppendAccessKey())
|
||||
{
|
||||
nsAutoString tmpstring(NS_LITERAL_STRING("("));
|
||||
nsAutoString tmpstring;
|
||||
if (!mTitle.IsEmpty() && !isspace(mTitle.Last())) {
|
||||
tmpstring += ' ';
|
||||
}
|
||||
tmpstring += '(';
|
||||
tmpstring += mAccessKey;
|
||||
ToUpperCase(tmpstring);
|
||||
tmpstring.Append(NS_LITERAL_STRING(")"));
|
||||
|
|
Загрузка…
Ссылка в новой задаче