Mohit Mohan

Results 6 comments of Mohit Mohan

+1 I implemented my own downloader with reqwest blocking for use with std::thread and found that my app crashes silently on Windows 10. No unsafe operations and my buffers (allocated...

@JJeris I limited the events per second. I didn’t like the idea of throttling using an iterator as the total number of events scales with file size and we currently...

@0rvar I don't have the clipboard or global-shortcut features enabled. So it could be unrelated.

> @mhtmhn what does your allowlist look like? @0rvar Here you go... ``` "allowlist": { "all": false, "shell": { "all": false, "open": true }, "window": { "all": false, "hide": true,...

In the file [legato_widget.c](https://github.com/Microchip-MPLAB-Harmony/gfx/blob/master/middleware/legato/library/src/gfx/legato/widget/legato_widget.c#L148-L150), change lines L148-L150 from this: ``` for(i = 0; i < _this->children.size; i++) { child = _this->children.values[i]; ``` to this: ``` while(_this->children.size > 0) { child...

I tested multiple scratch buffers on the MZ EF connected to a MaxTouch Curiosity display (ILI9488 over 4-Wire SPI) and didn't see any issues pop up. Can you try blitting...