209989 After Find Again (Ctrl-G/F3), text highlighting color becomes green. Patch (tweak) by Peter Kasting <pkasting@google.com>. r=dbaron

git-svn-id: svn://10.0.0.236/trunk@200377 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
mark%moxienet.com
2006-06-20 00:30:18 +00:00
parent abc730764f
commit 011cbdbc29

View File

@@ -4253,6 +4253,13 @@ nsTypedSelection::Clear(nsPresContext* aPresContext)
}
// Reset direction so for more dependable table selection range handling
SetDirection(eDirNext);
// If this was an ATTENTION selection, change it back to normal now
if (mFrameSelection->GetDisplaySelection() ==
nsISelectionController::SELECTION_ATTENTION) {
mFrameSelection->SetDisplaySelection(nsISelectionController::SELECTION_ON);
}
return NS_OK;
}
@@ -5151,12 +5158,6 @@ nsTypedSelection::RemoveAllRanges()
// Turn off signal for table selection
mFrameSelection->ClearTableCellSelection();
// If this was an ATTENTION selection, change it back to normal now
if (mFrameSelection->GetDisplaySelection() ==
nsISelectionController::SELECTION_ATTENTION) {
mFrameSelection->SetDisplaySelection(nsISelectionController::SELECTION_ON);
}
return mFrameSelection->NotifySelectionListeners(GetType());
// Also need to notify the frames!
// PresShell::CharacterDataChanged should do that on DocumentChanged