missed a |= instead of just a ==. The compared variable is a bitflag not just a number.

This commit is contained in:
mjudge%netscape.com 1999-11-23 22:49:44 +00:00
Родитель 6a66ff51fc
Коммит e5cc293e99
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -601,7 +601,7 @@ nsFrame::DisplaySelection(nsIPresContext& aPresContext, PRBool isOkToTurnOn)
mParent->GetStyleData(eStyleStruct_UserInterface, (const nsStyleStruct*&)userinterface);
}
}
if (userinterface->mUserSelect == NS_STYLE_USER_SELECT_NONE) {
if (userinterface->mUserSelect != NS_STYLE_USER_SELECT_NONE) {
result = PR_FALSE;
isOkToTurnOn = PR_FALSE;
}

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

@ -601,7 +601,7 @@ nsFrame::DisplaySelection(nsIPresContext& aPresContext, PRBool isOkToTurnOn)
mParent->GetStyleData(eStyleStruct_UserInterface, (const nsStyleStruct*&)userinterface);
}
}
if (userinterface->mUserSelect == NS_STYLE_USER_SELECT_NONE) {
if (userinterface->mUserSelect != NS_STYLE_USER_SELECT_NONE) {
result = PR_FALSE;
isOkToTurnOn = PR_FALSE;
}