Olivier Goffart

Results 105 issues of Olivier Goffart

``` export Demo := Window { width: 300px; height: 300px; if true : Rectangle { background: blue; visible: false; } } ``` In that example, the Rectangle is still visible...

The current printer demo design does not work well on such a small screen because the touch area are too small. The USB screen doesn't make sense. And we can...

demos

We often have screens where pages goes on top of eachother, and we want to not render these items at all. We could have a opaque detection at several level:...

optimization

On Windows, loading the metadata and other child cargo processes show a cmd window. Seems like we need to add some flags to every command so they don't show https://stackoverflow.com/questions/59692146/is-it-possible-to-use-the-standard-library-to-spawn-a-process-without-showing-th...

There are currently no tests for slint-lsp. We should have test for auto-completion, or goto definition, and such. One way to do it would simply to add `#[test]` in the...

Currently, we do not have any tests for the rendering. We should have tests that render images and compare theses images to make sure everything is pixel perfect. The way...

The motivation was to fix a bug i noticed in the todo example: Check "hide done items" and "Sort by name", then click "Remove Done Items", then add a new...

Imagine: ```js import * as slint from "npm:slint-ui"; let demo = slint` import { AboutSlint } from "std-widgets.slint"; export component Demo inherits Window { AboutSlint {} } `.Demo(); demo.show(); await...

enhancement
a:language-javascript

### Discussed in https://github.com/slint-ui/slint/discussions/2516 Testcase: ``` import { Button, VerticalBox, ListView, HorizontalBox } from "std-widgets.slint"; export component Demo { height: 200px; width: 200px; property items-model: [ {text: "123", should_show: true...

bug
a:compiler