Skip to content
Snippets Groups Projects
Commit 68a06443 authored by Mnikolenko Productengine's avatar Mnikolenko Productengine
Browse files

SL-19702 don't skip double clicks when clicking scripted objects

parent 4aa44bdf
No related branches found
No related tags found
No related merge requests found
......@@ -1617,9 +1617,9 @@ BOOL LLViewerInput::handleMouse(LLWindow *window_impl, LLCoordGL pos, MASK mask,
// If the first LMB click is handled by the menu, skip the following double click
static bool skip_double_click = false;
if (clicktype == CLICK_LEFT && down && !is_toolmgr_action)
if (clicktype == CLICK_LEFT && down)
{
skip_double_click = handled;
skip_double_click = is_toolmgr_action ? false : handled;
}
if (double_click_sp && down)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment