Alexandre Bury

Results 285 comments of Alexandre Bury

Hi, and thanks for the report! I do not have a windows environment at the moment, making testing this a bit tricky, but this does look like a rendering issue....

Hi, and thanks for the report! Unfortunately it's not trivial to know a layer is hidden. Layers can be transparent and only draw on part of their allocated rectangle, which...

You can already wrap some view in a `HideableView` and toggle that on/off. You could absolutely do this for any full-screen layer you add. But if you add a non-transparent...

The post is about having a front full-screen layer, and other layers behind it. All layers behind the front one will never be seen, and drawing them is wasted. Having...

Hi, Indeed, `LinearLayout`, and especially nested `LinearLayouts`, may not be very cache-friendly. `TextView` does have some rows cache, but the issue is that `LinearLayout` currently has a multi-pass layout phase,...

Hi, and thanks for the report! I'm not entirely sure how to make the API for this ergonomic. * Returning a result when adding a name to a view sounds...

Hi, and thanks for the report! Note that the sample code here listens to the escape key, not 'q'. Can you run the other examples from this repository? If you...

Arf yeah it's unfortunate that crossterm doesn't support /dev/tty on macOS. I suppose until they fix it, another backend like termion may be a better solution.

Hi, and thanks for the report! Indeed, right now most views expect printable-only content, and directly forward this to the terminal. Terminals in general are terrible, and as you can...

Hi, I don't think we use the affected API directly form cursive. We do [re-export a `OwningHandle` type](https://docs.rs/cursive/latest/cursive/views/type.ViewRef.html), so users could possibly call the unsound APIs themselves on this, but...