Borhan Hafez

Results 44 comments of Borhan Hafez

I also need this, except for the normal build, not the tests. ```bash LIBRARY_PATH=/usr/local/lib cargo run ``` If run without the env variable it complains about not managing to find...

@mbrlabs You probably already know this but just in case Godot 4.0 is released and the linked issue has a merged pull request. The change log also mentions new text...

What I understood was that ```svelte ``` is just syntax sugar for ```svelte x = e.target.checked ? [...x, name] : x.filter(e=> e !== name)} /> ``` it doesn't have any...

Basically this is a feature request for an easier way to do this: ```svelte let options = [] options = e.detail ? [...options, "option1"] : options.filter(e=> e !== "option1")} label="Option...