Merge branch 'DRTVWR-580-maint-T' into DRTVWR-582-maint-U

meow-7.2.2
Andrey Lihatskiy 2023-07-17 23:17:49 +03:00
commit 4c141cc4c5
1 changed files with 2 additions and 2 deletions

View File

@ -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)