mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-04 05:32:56 +00:00
Fix for 46749, regression from my earlier checkin. forgot to check for null before
looking for the menu parent. Doh!
This commit is contained in:
parent
4b5231a715
commit
dcbd627f07
@ -585,9 +585,11 @@ nsMenuFrame::OpenMenuInternal(PRBool aActivateFlag)
|
|||||||
|
|
||||||
if (menuPopup) {
|
if (menuPopup) {
|
||||||
// inherit whether or not we're a context menu from the parent
|
// inherit whether or not we're a context menu from the parent
|
||||||
PRBool parentIsContextMenu = PR_FALSE;
|
if ( mMenuParent ) {
|
||||||
mMenuParent->GetIsContextMenu(parentIsContextMenu);
|
PRBool parentIsContextMenu = PR_FALSE;
|
||||||
menuPopup->SetIsContextMenu(parentIsContextMenu);
|
mMenuParent->GetIsContextMenu(parentIsContextMenu);
|
||||||
|
menuPopup->SetIsContextMenu(parentIsContextMenu);
|
||||||
|
}
|
||||||
|
|
||||||
// Install a keyboard navigation listener if we're the root of the menu chain.
|
// Install a keyboard navigation listener if we're the root of the menu chain.
|
||||||
PRBool onMenuBar = PR_TRUE;
|
PRBool onMenuBar = PR_TRUE;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user