Olivier Goffart

Results 270 comments of Olivier Goffart

@tronical Is this still a problem?

This is specific to the event handling in the Qt backend. But we don't recommand the Qt backend on mac.

The image cache was moved into core and doesn't suffer this problem.

Is this still an issue? It seems like this s caused by a problem in the `image` crate. There was some error with invalid enum. Closing for now. Please re-open...

Closing this since there is nothing we can do about it

Another possibility: ``` accessibility-action(action, value /*: string*/) => { if (action == AccessibilityAction.expand) { // ... return accept; } else if (action == AccessibilityAction.increment) { // increment return accept; }...

I had some thought about it, here is what i think we need to do: **Runtime:** - [ ] Add an (internal) `enum AccessibleAction{ Default, Expand, SetValue(f64), SetText(SharedString), ...} `...

Indeed, we should probably not unwrap there. That said, you should only return None if row is out of bounds. But I'm not quite sure what the behavior should be...

I think i'll go with the first option as this is the easier