From 0a952f54a58d9c34366269f45785f4a48a359675 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Thu, 28 Aug 2014 12:14:33 +0000 Subject: [PATCH] same is true (and fixable here) for right-click in sub for actions allowing no multiple entries --- etemplate/js/et2_extension_nextmatch_actions.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/etemplate/js/et2_extension_nextmatch_actions.js b/etemplate/js/et2_extension_nextmatch_actions.js index 36a6ceacfe..abc592be71 100644 --- a/etemplate/js/et2_extension_nextmatch_actions.js +++ b/etemplate/js/et2_extension_nextmatch_actions.js @@ -46,7 +46,8 @@ function nm_action(_action, _senders, _target, _ids) } } // default action when doubleclicked contains (previous selected) ids of other hierarchy levels - if (_action.default) + // same is true (and fixable here) for right-click in sub for actions allowing no multiple entries + if (_action.default || !_action.allowOnMultiple) { _ids.ids = [_senders[0].id]; }