diff --git a/fhem/FHEM/55_InfoPanel.pm b/fhem/FHEM/55_InfoPanel.pm index 511ce77fb..b958ee56c 100644 --- a/fhem/FHEM/55_InfoPanel.pm +++ b/fhem/FHEM/55_InfoPanel.pm @@ -1119,6 +1119,12 @@ sub btIP_evalLayout { $svg .= btIP_itemLongpoll($id,$x,$y,$text,%params); } + when("movecalculated") { + my ($tox,$toy)= split('[ \t]+', $def, 2); + $params{xx} = AnalyzePerlCommand(undef,$tox); + $params{yy} = AnalyzePerlCommand(undef,$toy); + } + when("moveby") { my ($byx,$byy) = split('[ \t]+', $def, 2); my ($x,$y)= btIP_xy($byx,$byy,%params); @@ -1724,6 +1730,11 @@ Please read