mirror of https://github.com/zulip/zulip.git
click_handlers: Don't select message on clicking message_controls.
Note that opening the main message actions menu still selects the message due to explicit code in toggle_actions_popover.
This commit is contained in:
parent
4d98b0552e
commit
da11141eae
|
@ -137,6 +137,11 @@ export function initialize() {
|
|||
return true;
|
||||
}
|
||||
|
||||
// Don't select message on clicking message control buttons.
|
||||
if (target.parents(".message_controls").length > 0) {
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue