Changed the possibility to play/pause the rfb session
from the right mouse button to the left button.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@247 3789f03b-4d11-0410-bbf8-ca57d06f2519
diff --git a/rfbplayer/rfbplayer.cxx b/rfbplayer/rfbplayer.cxx
index a494207..94716db 100644
--- a/rfbplayer/rfbplayer.cxx
+++ b/rfbplayer/rfbplayer.cxx
@@ -547,8 +547,8 @@
}
return 0;
- // Process play/pause by the right mouse button
- case WM_RBUTTONDOWN:
+ // Process play/pause by the left mouse button
+ case WM_LBUTTONDOWN:
SendMessage(getMainHandle(), WM_COMMAND, ID_PLAYPAUSE, 0);
return 0;