Liam Howatt

Results 230 comments of Liam Howatt

More likely than not, the display closing issue on Windows is #6059 which is still an open issue where we have discussed a solution to in that issue. For the...

@C47D I think I was able to get it. It might not be perfect but I hope it helps get you unstuck. The main issues were: - The scale is...

I can send it since I basically just need to commit and push. :+1:

Could you please send screenshots/pictures? Or even better, a code snippet to reproduce the issue? If you're using one of the special drawing backends there might be a blending issue...

Nice! :slightly_smiling_face:

I confirmed this is still a thing in the latest `master`. C equivalent for reference ```c static void cl_cb(lv_event_t * e) { LV_LOG_USER("clicked"); } static void click_scroll(void) { lv_obj_t *...

```c if(headerBlockRightStatusSpans_Text[i][0]) lv_style_set_text_letter_space(&headerBlockRightStatusSpans[i]->style, 5); ``` I had to comment out this part or else I see something else troubling. No "E" or "F". ![image](https://github.com/lvgl/lvgl/assets/30486941/88e9c453-2d8e-451f-9add-0d3808697dc4) Anyways, after commenting out that part,...

To summarize, there are two unique problems here 1. The second span in a spangroup shows a garbage character instead of the real character. 2. Setting the letter space style...

@kisvegabor shall I open a PR for my diff?

`get_x_aligned` grabs the style property for x position of the object while `get_x` does a bit more to give you the real pixel value. The reason `get_x_aligned` reports 536870922 is...