diff options
-rw-r--r-- | views/controls/menu/menu_controller.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/views/controls/menu/menu_controller.cc b/views/controls/menu/menu_controller.cc index 2c00e5e..2622523 100644 --- a/views/controls/menu/menu_controller.cc +++ b/views/controls/menu/menu_controller.cc @@ -39,7 +39,9 @@ static const int kCloseOnExitTime = 1200; // Max width of a menu. There does not appear to be an OS value for this, yet // both IE and FF restrict the max width of a menu. -static const int kMaxMenuWidth = 400; +// NOTE: this needs to be large enough to accommodate the wrench menu with big +// fonts. +static const int kMaxMenuWidth = 800; // Amount to inset submenus. static const int kSubmenuHorizontalInset = 3; |