diff options
author | Mnikolenko ProductEngine <mnikolenko@productengine.com> | 2020-08-20 19:49:23 +0300 |
---|---|---|
committer | Mnikolenko ProductEngine <mnikolenko@productengine.com> | 2020-08-20 19:49:23 +0300 |
commit | acfbb41f4ddb59cd1fe0509949b7b1cf05ac4c9a (patch) | |
tree | e3fac4e84f5f7d12dbdbf68fe6cd29f4c59e413c /indra/llwindow/llopenglview-objc.mm | |
parent | 275188a7e3e85c43e5ad5df4dec6868003afec2e (diff) |
SL-13813 The current line is not selected after triple-clicking text in notecard on the macOS
Diffstat (limited to 'indra/llwindow/llopenglview-objc.mm')
-rw-r--r-- | indra/llwindow/llopenglview-objc.mm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llwindow/llopenglview-objc.mm b/indra/llwindow/llopenglview-objc.mm index 5b9dce02c4..d2c5b11c3d 100644 --- a/indra/llwindow/llopenglview-objc.mm +++ b/indra/llwindow/llopenglview-objc.mm @@ -359,10 +359,10 @@ attributedStringInfo getSegments(NSAttributedString *str) callRightMouseDown(mMousePos, [theEvent modifierFlags]); mSimulatedRightClick = true; } else { - if ([theEvent clickCount] >= 2) + if ([theEvent clickCount] == 2) { callDoubleClick(mMousePos, [theEvent modifierFlags]); - } else if ([theEvent clickCount] == 1) { + } else if ([theEvent clickCount] >= 1) { callLeftMouseDown(mMousePos, [theEvent modifierFlags]); } } |