mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-30 07:35:39 +00:00
Fix for bug #2896
Monotone-Parent: a0736ebfe97dd1ff5f02d3f1a6f20c4e5c593b0c Monotone-Revision: c4c5e180ad8506d04424626e6382fcd5b2b6a073 Monotone-Author: flachapelle@inverse.ca Monotone-Date: 2008-09-05T02:12:56 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -564,11 +564,13 @@ function onRowClick(event) {
|
||||
if (isMac() && isSafari())
|
||||
if (event.ctrlKey == 1)
|
||||
isLeftClick = false; // Control-click is equivalent to right-click under Mac OS X
|
||||
else if (event.metaKey == 1) // Command-click
|
||||
isLeftClick = true;
|
||||
else
|
||||
isLeftClick = Event.isLeftClick(event);
|
||||
else
|
||||
isLeftClick = Event.isLeftClick(event);
|
||||
|
||||
|
||||
if (initialSelection.length > 0
|
||||
&& initialSelection.indexOf(node) >= 0
|
||||
&& !isLeftClick)
|
||||
|
||||
Reference in New Issue
Block a user