#226 updated PLC/RTU front panels to use new mouse events

This commit is contained in:
Mikayla
2023-05-10 19:21:54 +00:00
parent 2c2f936232
commit 3a0d677c16
6 changed files with 12 additions and 12 deletions

View File

@@ -257,9 +257,9 @@ function threads.thread__main(smem, init)
-- update indicators
databus.tx_hw_status(plc_state)
elseif event == "mouse_click" then
-- handle a monitor touch event
renderer.handle_mouse(core.events.click(param1, param2, param3))
elseif event == "mouse_click" or event == "mouse_up" or event == "mouse_drag" or event == "mouse_scroll" then
-- handle a mouse event
renderer.handle_mouse(core.events.new_mouse_event(event, param1, param2, param3))
elseif event == "clock_start" then
-- start loop clock
loop_clock.start()