Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4720)

Unified Diff: chrome/app/chrome_dll.rc

Issue 147202: Added support for Text only zoom... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 11 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/app/chrome_dll_resource.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/app/chrome_dll.rc
===================================================================
--- chrome/app/chrome_dll.rc (revision 19223)
+++ chrome/app/chrome_dll.rc (working copy)
@@ -30,6 +30,11 @@
// Note that we don't handle any of the VK_BROWSER_* commands here. We will
// pick those up in the WM_APPCOMMAND message.
+// Also, it seems there is some problem with Vista32Sp1 and Ctrl+Shift+0 (Zero)
+// which gets swallowed, and the WM_KEYDOWN does not contain '0' but rather
+// the shift code (VK_SHIFT)... verified on hebrew vista with spyxx and a
+// debugger. For more info see http://codereview.chromium.org/147202.
+
IDR_MAINFRAME ACCELERATORS
BEGIN
VK_LEFT, IDC_BACK, VIRTKEY, ALT
@@ -123,13 +128,17 @@
VK_ESCAPE, IDC_TASK_MANAGER, VIRTKEY, SHIFT
"U", IDC_VIEW_SOURCE, VIRTKEY, CONTROL
VK_OEM_MINUS, IDC_ZOOM_MINUS, VIRTKEY, CONTROL
- VK_OEM_MINUS, IDC_ZOOM_MINUS, VIRTKEY, CONTROL, SHIFT
+ VK_OEM_MINUS, IDC_ZOOM_TEXT_ONLY_MINUS, VIRTKEY, CONTROL, SHIFT
VK_SUBTRACT, IDC_ZOOM_MINUS, VIRTKEY, CONTROL
+ VK_SUBTRACT, IDC_ZOOM_TEXT_ONLY_MINUS, VIRTKEY, CONTROL, SHIFT
"0", IDC_ZOOM_NORMAL, VIRTKEY, CONTROL
+ "0", IDC_ZOOM_NORMAL, VIRTKEY, CONTROL, SHIFT
VK_NUMPAD0, IDC_ZOOM_NORMAL, VIRTKEY, CONTROL
+ VK_NUMPAD0, IDC_ZOOM_NORMAL, VIRTKEY, CONTROL, SHIFT
VK_OEM_PLUS, IDC_ZOOM_PLUS, VIRTKEY, CONTROL
- VK_OEM_PLUS, IDC_ZOOM_PLUS, VIRTKEY, CONTROL, SHIFT
+ VK_OEM_PLUS, IDC_ZOOM_TEXT_ONLY_PLUS, VIRTKEY, CONTROL, SHIFT
VK_ADD, IDC_ZOOM_PLUS, VIRTKEY, CONTROL
+ VK_ADD, IDC_ZOOM_TEXT_ONLY_PLUS, VIRTKEY, CONTROL, SHIFT
END
« no previous file with comments | « no previous file | chrome/app/chrome_dll_resource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698