| Index: ui/views/controls/menu/menu_controller.cc
|
| diff --git a/ui/views/controls/menu/menu_controller.cc b/ui/views/controls/menu/menu_controller.cc
|
| index b0c80deb236915ef8ea902c29186d7ebeb7b0435..af26573a67a8ffa23be7fce0b81f060639febc47 100644
|
| --- a/ui/views/controls/menu/menu_controller.cc
|
| +++ b/ui/views/controls/menu/menu_controller.cc
|
| @@ -108,7 +108,7 @@ static View* GetFirstFocusableView(View* view, int start, bool forward) {
|
| return deepest;
|
| }
|
| }
|
| - return view->IsFocusableInRootView() ? view : NULL;
|
| + return view->IsFocusable() ? view : NULL;
|
| }
|
|
|
| // Returns the first child of |start| that is focusable.
|
|
|