Bug 308017 - Bidi: up/down-arrow sometimes behave incorrectly after switching keyboard layout. patch from Uri Bernstein <uriber@gmail.com>, r=smontagu, sr=roc.

This commit is contained in:
mozilla.mano%sent.com 2005-09-18 14:18:28 +00:00
Родитель 001f97197c
Коммит 40c9113013
1 изменённых файлов: 5 добавлений и 0 удалений

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

@ -7388,6 +7388,11 @@ nsTypedSelection::SelectionLanguageChange(PRBool aLangRTL)
else
shell->SetCaretBidiLevel(levelAfter);
}
// The caret might have moved, so invalidate the desired X position
// for future usages of up-arrow or down-arrow
mFrameSelection->InvalidateDesiredX();
return NS_OK;
}