From fe44029ee9cdb10de2c4f3005a897a16a740e323 Mon Sep 17 00:00:00 2001 From: michael Date: Sun, 7 Apr 2013 17:32:26 -0400 Subject: [PATCH] Changed shortcut (from Alt to the right-side Alt) for auto-preview of highlight and shadow clipping indicators (Windows only) (see issue 1813) --- rtgui/cropwindow.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rtgui/cropwindow.cc b/rtgui/cropwindow.cc index ed380fa24..fe2f75358 100644 --- a/rtgui/cropwindow.cc +++ b/rtgui/cropwindow.cc @@ -694,10 +694,10 @@ void CropWindow::expose (Cairo::RefPtr cr) { bool showFocusMask = iarea->previewModePanel->showFocusMask(); bool showclippedAny = (!showR && !showG && !showB && !showL); // will show clipping if any of RGB chanels is clipped - // If ALT was pressed, auto-enable highlight and shadow + // While the Right-side ALT is pressed, auto-enable highlight and shadow clipping indicators // TODO: Add linux/MacOS specific functions for alternative #ifdef WIN32 - if (GetKeyState(VK_MENU)<0) { + if (GetKeyState(VK_RMENU)<0) { showcs=true; showch=true; } #endif