Simon Hausmann

Results 390 comments of Simon Hausmann

Support for infinite lists is something that I think mostly belongs into a custom model implementation. But the `ListView` may need to communicate to the model that the end of...

I think this is a legit feature request - the ability to apply filters to sub-trees or - before that - specify that a sub-tree is to be rendered into...

I can reproduce some of these on Ubuntu 23.10. AFAICS these are basically issues with wayland support, for which we use winit. It works when unsetting `WAYLAND_DISPLAY` and connecting to...

You can for example make it empty: `export WAYLAND_DISPLAY=`

Thanks for reporting this issue. I'd say it's a bug that the combination of `slint_build::compile()` and `slint::include_modules!` only applies to the last invocation. Either this is perhaps fixable by including...

FWIW, the way @rib describes it is also pretty much the way [Qt](https://doc.qt.io/qt-6/qwindow.html#requestUpdate) works.

I wonder if perhaps what you're seeing is anti-aliasing "quality". I made a test-case like this: ``` export component Testcase inherits Window { preferred-width: 300px; preferred-height: 300px; Path { commands:...

I can reproduce this with winit when two screens have different scale factors, but only when using OpenGL rendering (glutin, with FemtoVG or Skia). There's no such artefact visible when...

This could be an issue with glutin or (maybe more likely?) Apple's OpenGL support - which is deprecated unfortunately.

I see two issues here: 1. The old question what the text element should do if the glyphs don't fit. Right now it skips the glyphs entirely, but it could...