Alexander Huszagh

Results 294 comments of Alexander Huszagh

Weirdly, I'm getting another issue with a stack overflow for cases failing with the bit pattern `0b11001110111111111111111111110000` or `0b11001111000000000000000000000000` for a signed 32-bit integer type. Both these cases fail, and...

> Can you be more specific about what types you use? `i32`? `u32`? > > Also, I this may warrant a new issue, though it definitely looks related. I'm using...

@neithernut Seems like it has, both #285 and this bug seem to be fixed by the changes. I can't reproduce it exactly with the cases, since running 50 or so...

Closing since #1023 has been added and supporting Android versions 12-13 is extremely difficult since it seems impossible to separate the APEX linker from the Android build, which would require...

It looks like this could probably be supported if the following [lines](https://github.com/rust-lang/cc-rs/blob/66005c8448e21c981c8a2100bb27a28d635f826d/src/lib.rs#L2453-L2471) also had a replacement for '.', such as: ```diff - let target_u = target.replace("-", "_"); + let target_u...

That's why I qualified "at least for a UNIX shell". because sure, I could use `env` (although I can't use `declare`, which is difficult as well), or I could spin...

I'm assuming all the environment information provided is the same as before? > Qt version: 6 > Theme: Dark and Light > OS: Windows 10

Can you provide more specific details? I've confirmed that this still works on my end with [widgets.py](/example/widgets.py). The command I'm running from the repository root is: ```bash python example/widgets.py --stylesheet...

Ah thank you, the image reflects a prior version and has since been updated. I'll add updated images to the gallery.

~~I think [assert_cmd](https://crates.io/crates/assert_cmd) might be the proper tool for the job here: https://crates.io/crates/assert_cmd~~ Edit: `trycmd` is probably better, and I'll try to configure it entirely tomorrow.