зеркало из https://github.com/mozilla/pjs.git
Only update the select command for focused text inputs. Bug 394792, r=roc, sr=neil, a=roc
This commit is contained in:
Родитель
bfb2c00965
Коммит
f57439e68f
|
@ -323,6 +323,17 @@ nsTextInputListener::NotifySelectionChanged(nsIDOMDocument* aDoc, nsISelection*
|
|||
|
||||
mSelectionWasCollapsed = collapsed;
|
||||
|
||||
if (!mFrame) {
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
nsCOMPtr<nsIContent> focusedContent;
|
||||
mFrame->PresContext()->EventStateManager()->
|
||||
GetFocusedContent(getter_AddRefs(focusedContent));
|
||||
if (focusedContent != mFrame->GetContent()) {
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
return UpdateTextInputCommands(NS_LITERAL_STRING("select"));
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче