Time Nick Message 18:01 Krock rubenwardy: what's the status of #9516? can it be reviewed? 18:01 ShadowBot https://github.com/minetest/minetest/issues/9516 -- Fix non-interactable elements blocking input by rubenwardy 18:10 Krock also what's up with #9375 ? does it now need action for this release or not? 18:10 ShadowBot https://github.com/minetest/minetest/issues/9375 -- Reminder: Consider reverting collision tweak before 5.2.0 18:30 rubenwardy It's ready for review except that DS-minetest suggested a better way, and I hadn't tried that yet 18:31 DS-minetest I'm currently trying something 18:32 rubenwardy cool 18:32 DS-minetest preprocessEvent is the thing that calls every onEvent, right? 18:32 rubenwardy I've not been feeling very minetest-y lately 18:34 Krock DS-minetest: the name would suggest that, yes. 18:34 Krock rubenwardy: oh yes, I know that. 18:35 Krock (..feeling) 18:55 DS-minetest it seems like there's something else that handles the events 18:55 DS-minetest preprocessEvents often (always?) returns false 18:55 DS-minetest and if i make it always return true, buttons dont work anymore 19:29 DS-minetest #9534 19:29 ShadowBot https://github.com/minetest/minetest/issues/9534 -- Make some gui elements only visible while drawing to make them not block events by Desour 19:31 Krock interesting 19:32 DS-minetest sorry for not having made the PR earlier >_< 19:32 DS-minetest (idea is old http://irc.minetest.net/minetest-dev/2020-03-14#i_5652077) 19:33 Krock so generally spoken you change the visibility of all elements that don't have a FieldSpec name 19:33 DS-minetest um no 19:33 Krock hmm.. images have names 19:33 DS-minetest i add specific elements to a new vector 19:34 DS-minetest to m_clickthrough_elements 19:34 Krock no no. I just tried to generalize the behaviour - but that click-through rule does not seem to follow any rule so far 19:35 DS-minetest (images have names btw) 19:35 Krock I mean rules other than the user interactions 19:35 Krock yes, I noticed that shortly after as well. 19:35 DS-minetest the role is that you can click through any elements that were drawn manually in the past ;) 19:38 Krock ah 19:49 DS-minetest ok, so elements that were drawn manually pre #8740 are: (rect mode tooltip now uses element), backgrounds, boxes, images, item images, inventorylists (after another PR), static text elements 19:49 ShadowBot https://github.com/minetest/minetest/issues/8740 -- Make formspec elements real elements for draw order and clipping by Desour 19:49 DS-minetest where backgrounds and boxes are no problem as they are in the back 19:50 DS-minetest (boxes in old versions are in the back= 19:50 DS-minetest ) 19:51 DS-minetest and invlists are fixed in the class (because at some places events are useful - in theory)