зеркало из https://github.com/mozilla/gecko-dev.git
hack to get caret to draw on empty line.
This commit is contained in:
Родитель
422823b285
Коммит
95cc51a5d9
|
@ -286,6 +286,10 @@ void nsCaret::DrawCaret()
|
|||
{
|
||||
nsRect frameRect;
|
||||
theFrame->GetRect(frameRect);
|
||||
if (0 == frameRect.height){
|
||||
frameRect.height = 200;
|
||||
frameRect.y += 200;
|
||||
}
|
||||
|
||||
nsCOMPtr<nsIPresContext> presContext;
|
||||
mPresShell->GetPresContext(getter_AddRefs(presContext));
|
||||
|
|
|
@ -286,6 +286,10 @@ void nsCaret::DrawCaret()
|
|||
{
|
||||
nsRect frameRect;
|
||||
theFrame->GetRect(frameRect);
|
||||
if (0 == frameRect.height){
|
||||
frameRect.height = 200;
|
||||
frameRect.y += 200;
|
||||
}
|
||||
|
||||
nsCOMPtr<nsIPresContext> presContext;
|
||||
mPresShell->GetPresContext(getter_AddRefs(presContext));
|
||||
|
|
Загрузка…
Ссылка в новой задаче