diff options
Diffstat (limited to 'chrome/views')
-rw-r--r-- | chrome/views/accelerator.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/chrome/views/accelerator.cc b/chrome/views/accelerator.cc index 8619394..e2a5f18 100644 --- a/chrome/views/accelerator.cc +++ b/chrome/views/accelerator.cc @@ -44,6 +44,9 @@ std::wstring Accelerator::GetShortcutText() const { case VK_F1: string_id = IDS_F1_KEY; break; + case VK_F11: + string_id = IDS_F11_KEY; + break; } std::wstring shortcut; |