the selection helper is active only when needed. see #104

This commit is contained in:
mic 2024-08-15 00:08:18 +02:00
parent e36c15b28c
commit d5344af04f

View file

@ -425,6 +425,10 @@ function selectContentOnMouseUp(event) {
}
function selectContentOnClick(event) {
if(current_action === '0'){
return;
}
// Prevent the default behavior of the click
event.preventDefault();