fixed error detection
parent
7ac8a2f7c2
commit
184b3e8848
|
@ -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];
|
||||
|
|
Loading…
Reference in New Issue