Enyium

Results 99 comments of Enyium

I find similar behavior quite strange: I have a `LineEdit` focused. When I then click a `CheckBox` or a `Button`, the `LineEdit` stays focused. Normally, GUIs switch the focus to...

So, together with #6187, `timers.rs` now caused the following panic messages: - `Recursion in timer code` - `assertion failed: !timer.being_activated` - `invalid key` May the test coverage for the timer...

> Switch issues: If you used the FemtoVG renderer for your screenshot, this has to do with #4831.

I find this PR a little clearer than #98, so prefer it over the other one. But I don't know what the difference between self.main_window.startListening.emit() and self.key_listener.start() is, which the...

Harmonizing with the size constraints and making Slint adhere to them (also indirectly) should be very easy for the user. I think when reading the properties `width`/`height`/`preferred-...`/`min-...`/`max-...`, they should be...

This also happens with `StandardListView`, as [this SlintPad demo](https://slintpad.com/?snippet=import+%7B+VerticalBox%2C+StandardListView+%7D+from+%22std-widgets.slint%22%3B%0A%0Aexport+component+Demo+%7B%0A++++lv+%3A%3D+StandardListView+%7B%0A++++++++height%3A+self.preferred-height%3B%0A++++++++model%3A+%5B%0A++++++++++++%7Btext%3A+%22Foo%22%7D%2C%0A++++++++++++%7Btext%3A+%22Bar%22%7D%2C%0A++++++++++++%7Btext%3A+%22Baz%22%7D%2C%0A++++++++%5D%3B%0A++++%7D%0A%0A++++Text+%7B%0A++++++++text%3A+%28%0A++++++++++++%22%5C%7Blv.min-width+%2F+1px%7D%2C+%22+%2B%0A++++++++++++%22%5C%7Blv.min-height+%2F+1px%7D%2C+%22+%2B%0A++++++++++++%22%5C%7Blv.preferred-width+%2F+1px%7D%2C+%22+%2B%0A++++++++++++%22%5C%7Blv.preferred-height+%2F+1px%7D%2C+%22+%2B%0A++++++++++++%22%22%0A++++++++%29%3B%0A++++%7D%0A%7D%0A&style=native) shows, and it also leads to nonsensical rendering of the scrollbar: ![bug](https://github.com/user-attachments/assets/6609a1ca-2cf7-440b-8ca6-26f7efc02b88)

There's [WhisperWriter](https://github.com/savbell/whisper-writer) for input. It has the advantage of being able to run locally, without the need to send your every word over the internet. On Windows 10, the TTS...

I tried to patch `LineEdit` with the following code: ```slint component PatchedLineEdit { in property input-type line-edit.input-type; in-out property text; callback edited(string); init => { line-edit.text = root.text; } changed...

`Slider`'s and `SpinBox`'s `value` have the same problem. When used in the manner initially described, their inner changing of their `value` property makes it so that setting a dependency of...

@hunger (@ogoffart?): If I'm not overlooking something fundamental here, this bug should have high priority in my opinion! Changing a property that a `Slider`'s `value`, e.g., is bound to and...