Rafał Mikrut

Results 395 comments of Rafał Mikrut

I use cargo-fuzz with corpus and own program(create_broken_files) which randomly modify input files. Both are used by https://github.com/qarmin/Automated-Fuzzer, which fuzz several programs in CI. I already changed symphonia commit to...

~20000 files from today CI run(symphonia version taken from #331) [A.7z.zip](https://github.com/user-attachments/files/18303127/A.7z.zip) (this is 7z, but github not allows to publish files with such extension)

It looks like I added an invalid file (probably intended for the project OXC). I can reproduce the problem with this binary (ASan on Linux): https://github.com/qarmin/Automated-Fuzzer/releases/download/Nightly/biome.7z The issue occurs with...

I still can reproduce problem with fluent spinbox - [code](https://slint.dev/releases/1.3.0/editor/?snippet=import+%7B+AboutSlint%2C+Button%2C+VerticalBox+%2C+SpinBox%7D+from+%22std-widgets.slint%22%3B%0Aglobal+Settings+%7B%0A++++in-out+property+%3Cint%3E+spinbox_value%3A+0%3B%0A++++in-out+property+%3Cstring%3E+text_value%3A+%22Nothing%22%3B%0A%7D%0A%0Aexport+component+Demo+%7B%0A%0A++++VerticalLayout+%7B+%0A++++++++SpinBox+%7B%0A++++++++++++enabled%3A+true%3B%0A++++++++++++maximum%3A+100000%3B%0A++++++++++++value+%3C%3D%3E+Settings.spinbox_value%3B%0A++++++++%7D%0A++++++++Text+%7B%0A++++++++++++text+%3C%3D%3E+Settings.text_value%3B%0A++++++++%7D%0A++++++++Button+%7B%0A++++++++++++text%3A+%22Increase%22%3B%0A++++++++++++clicked+%3D%3E+%7B%0A++++++++++++++++Settings.spinbox_value+%2B%3D+10%3B%0A++++++++++++++++Settings.text_value+%3D+Settings.spinbox_value%3B+%0A++++++++++++%7D%0A++++++++%7D%0A++++%7D%0A%7D%0A&style=native) https://github.com/slint-ui/slint/assets/41945903/bcfe5f2e-db4c-43f6-b4e4-627c95d8225e

This has now been fixed — scrollbars are rendered on top of the content.

All styles except 'Material' render scrollbars on top of the content Material: ![Image](https://github.com/user-attachments/assets/71098dab-2a62-4e41-9d6e-d12dfcca65c0) Cupertino ![Image](https://github.com/user-attachments/assets/4ed4ca20-c1db-411c-895c-9903e91bf337) Cosmic ![Image](https://github.com/user-attachments/assets/c8950769-66b4-4818-82ed-ddda443249cb) Fluent ![Image](https://github.com/user-attachments/assets/509343aa-edee-4511-b4c9-b6eab4f1a068)

Merging this two functions together to ``` #[test] fn test_select() { localizer().select(&["fr".parse().unwrap()]).unwrap(); assert_eq!("Bonjour le monde!", &hello_world()); localizer().select(&["en".parse().unwrap()]).unwrap(); assert_eq!("Hello World!", &hello_world()); } ``` fixes test instability, suggesting that there's likely a...

This option most likely caused the problem (99% sure).

Please include a few example files that are not being detected as duplicates and czkawka config file(if possible)