fixed error detection

develop
Sascha Nitsch 2024-09-09 17:18:38 +02:00
parent 7ac8a2f7c2
commit 184b3e8848
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ function mousemove($main, $control, $options) : bool
{
$element = $control->selectCSS($main->vars($options['parameter']));
$mouseOffset = $main->getMouseOffset();
if ($element === []) {
if ($element === [] || array_key_exists('error', $element)) {
return false;
}
$element = array_values($element)[0];