2.2.4
Patch release, I just wanted to make a devlog :)
Fixes:
-
I had(REVERTED)const thing = await import('./thing.js');in my modules, creating a race condition possibility (smth wants methods in the module before its loaded as its waiting for thing to load), so I switched it to `import * as thing from ‘./thing.js’;) which wont create that possibility - With my minimizing method, it just hides the window content, not removing it, so when you click in the area, even though you can see the things under it, it would click on the window. I added
pointer-events: none;to the .window.minimized class, making clicks pass through to the layer below it that’s visible.
Comments 0
No comments yet. Be the first!
Sign in to join the conversation.