Olivier Goffart

Results 105 issues of Olivier Goffart

As discussed in #4942, this Slint code ```slint FocusScope { key-pressed(event) => { if (event.text == "a") { accept } reject } } ``` Looks like it would return accept,...

diagnostics
a:language-slint

This issue is meant to contain API changes that we should consider in 2.0. We'll edit this list as we find more things to change: ## Rust - [ ]...

a:language-c++
a:language-rust
breaking change
api

It would be nice if it was possible to guard some arms with `#[cfg]` in the select macro. For example: (based on the example of https://docs.rs/crossbeam/latest/crossbeam/macro.select.html#examples , but adding a...

feature
crossbeam-channel

I'm working in a library that should be used on wasm and also on MCU platform with #[no_std]. I thought this crate would be a good fit to also have...

This is a spinoff of https://github.com/owncloud/client/issues/5576 (see the screenshot there) ### Steps to reproduce 1. Modify a file that has a single quote in it's name (`'`) 2. Query `ocs/v1.php/cloud/activity?format=json`...

This is a spin off of https://github.com/owncloud/oauth2/issues/34 which added already a URL where the client redirects when the authorisation is successfull. But it would also be nice to have url...

Currently, one need to move a weak pointer of the component handle to the callback, then upgrade it in the callback. Given a callback `foo(int, int) -> int` Currently we...

a:language-rust
rfc
breaking change

Reproducible in SlintPad and in the LSP live preview. Moving widgets no longer work in the master branch while it worked with 1.6.0 For example this simple code: ```slint import...

bug
a:live preview

Discussed in https://github.com/slint-ui/slint/discussions/3947#discussioncomment-7597955 ``` export component Foo { callback clickedA button.clicked; callback clickedB button.clicked; button := Button { text: "OK!"; } } ``` Multiple callback to the same callback won't...

bug
a:language-slint