Tabbing through textfields should repaint instead of leaving them looking

selected.  Bug 214115, r=brade, sr=dbaron


git-svn-id: svn://10.0.0.236/trunk@145278 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
bzbarsky%mit.edu
2003-07-28 20:45:38 +00:00
parent 83fba7b7c2
commit 6f5651c414
2 changed files with 4 additions and 10 deletions

View File

@@ -3610,7 +3610,6 @@ nsTextFrame::SetSelected(nsIPresContext* aPresContext,
return NS_OK;//do not continue no selection for this frame.
PRBool found = PR_FALSE;
PRBool wholeContentFound = PR_FALSE;//if the entire content we look at is selected.
if (aRange) {
//lets see if the range contains us, if so we must redraw!
nsCOMPtr<nsIDOMNode> endNode;
@@ -3645,7 +3644,6 @@ nsTextFrame::SetSelected(nsIPresContext* aPresContext,
else
{
found = PR_FALSE;
wholeContentFound = PR_TRUE;
}
}
else
@@ -3654,9 +3652,8 @@ nsTextFrame::SetSelected(nsIPresContext* aPresContext,
}
}
else {
if (aSelected != ((GetStateBits() & NS_FRAME_SELECTED_CONTENT) != 0)) {
found = PR_TRUE;
}
// null range means the whole thing
found = PR_TRUE;
}
if ( aSelected )

View File

@@ -3610,7 +3610,6 @@ nsTextFrame::SetSelected(nsIPresContext* aPresContext,
return NS_OK;//do not continue no selection for this frame.
PRBool found = PR_FALSE;
PRBool wholeContentFound = PR_FALSE;//if the entire content we look at is selected.
if (aRange) {
//lets see if the range contains us, if so we must redraw!
nsCOMPtr<nsIDOMNode> endNode;
@@ -3645,7 +3644,6 @@ nsTextFrame::SetSelected(nsIPresContext* aPresContext,
else
{
found = PR_FALSE;
wholeContentFound = PR_TRUE;
}
}
else
@@ -3654,9 +3652,8 @@ nsTextFrame::SetSelected(nsIPresContext* aPresContext,
}
}
else {
if (aSelected != ((GetStateBits() & NS_FRAME_SELECTED_CONTENT) != 0)) {
found = PR_TRUE;
}
// null range means the whole thing
found = PR_TRUE;
}
if ( aSelected )