From 0a2382e3736b944cd18277ec2ed3c49263b8a43d Mon Sep 17 00:00:00 2001 From: John Scipione Date: Fri, 7 Mar 2014 18:22:24 -0500 Subject: [PATCH] ShowImage: Scroll horizontally with control ...instead of command. See http://www.freelists.org/post/haiku-commits/haiku-hrev46304-srckitsinterface,18 --- src/apps/showimage/ShowImageView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/showimage/ShowImageView.cpp b/src/apps/showimage/ShowImageView.cpp index afcc3fa64a..1a0faa431f 100644 --- a/src/apps/showimage/ShowImageView.cpp +++ b/src/apps/showimage/ShowImageView.cpp @@ -1362,7 +1362,7 @@ ShowImageView::_MouseWheelChanged(BMessage* message) if ((modifiers() & B_SHIFT_KEY) != 0) { // scroll up and down _ScrollRestrictedBy(x, y); - } else if ((modifiers() & B_COMMAND_KEY) != 0) { + } else if ((modifiers() & B_CONTROL_KEY) != 0) { // scroll left and right _ScrollRestrictedBy(y, x); } else {