FlorentBecker

Results 9 comments of FlorentBecker

I don't get why this is tagged minor. It happens quite systematically, and makes quick reply useless in any heated discussion (where you most want to use it).

Any news about this effort, anything one can do to help?

> If you are motivated, Please go on. I will gladly answer questions. It's hard to see how much effort it's worth putting in it without knowing what the ocsigen...

The upside of the `condensation_indices` function compared to storing indices as weights is that you don't need to copy the graph: `condensation_indices` takes a `&Graph` argument rather than a `Graph`....

Since it's structs (aka product types) you're dealing with, you can always inline them. That is, it's always possible to compile this: ``` struct Settings { value_1: bool, value_2: bool...

Thanks for the suggestion, [here](https://slint-ui.com/releases/0.2.2/editor/?snippet=export+Demo+%3A%3D+Window+%7B%0A++++property%3Cbool%3E+editing%3A+false%3B%0A++++property%3Cstring%3E+greeting%3A+%22Hello+World%21%22%3B%0A%0A%0A++++t+%3A%3D+Text+%7B%0A++++++++text%3A+root.greeting%3B%0A++++++++font-size%3A+24px%3B%0A++++++++visible%3A+%21root.editing%3B%0A%0A++++++++callback+activated%3B%0A++++++++activated+%3D%3E+%7B%0A++++++++++++++++i.text+%3D+root.greeting%3B%0A++++++++++++++++root.editing+%3D+true%3B%0A++++++++++++++++i.focus%28%29%3B%0A++++++++++++%7D%0A%0A++++++++TouchArea+%7B%0A++++++++++++clicked+%3D%3E+%7B+parent.activated%28%29+%7D+%0A++++++++%7D%0A%0A++++++++%2F%2F+FocusScope+%7B%0A++++++++%2F%2F+++++gained-focus+%3D%3E+%7B+parent.activated%28%29+%7D%0A++++++++%2F%2F+%7D%0A++++%7D%0A%0A++++i+%3A%3D+TextInput+%7B%0A++++++++text%3A+root.greeting%3B%0A++++++++font-size%3A+24px%3B%0A++++++++color%3A+purple%3B%0A++++++++visible%3A+root.editing%3B%0A++++++++accepted+%3D%3E+%7B%0A++++++++++++root.greeting+%3D+self.text%3B%0A++++++++++++root.editing+%3D+false%3B%0A++++++++%7D%0A++++%7D%0A%7D%0A) is an example of what I'm trying to do. It works if you click on the message to start editing, the Text is replaced with...

Would it be possible to have a StaticGridLayout with a fixed num_rows and num_cols which accepts for loops?

Another solution would be to add a support for wrapping to HorizontalLayout and VerticalLayout (à la flex-wrap in css).

You can save some recompilation by using nix, and it gives you a single command workflouw: nix-build in the directory of your ocsigen-start application. You'll only be rebuilding ocsigen-start and...