Liam Howatt

Results 238 comments of Liam Howatt

Font conversion does not typically happen at runtime in an LVGL application. Are you trying to convert TFT fonts? Can you use TinyTFT? It's built into LVGL and intended to...

It's the `transform_rotation` style property of the `LV_PART_INDICATOR` part. Other widgets also do this sort of creative "overloading" through dedicated `lv_part_t`s.

For sure! What kind of state changes would be undone and redone, in your application? I can try to give an example of how it could be done.

There are no direct APIs for undo-redo since it's pretty niche. The use case is fairly application-specific and users would probably want to implement it differently each time. It's not...

Sounds cool. Are you able to try adding it and let me know if you get stuck? Is there a part you are unsure about?

Please see https://github.com/lvgl/lvgl/issues/6395 `lv_obj_is_valid` is good to use for debugging but can report objects as valid after they've been deleted. We could implement `lv_obj_null_on_delete` as was mentioned in the discussion.

I opened a PR for it. #6599 Is it clear how to use that function? Send a code sample if you want and I can show you how to use...

I'm sorry, could you please send a bit more? In particular the part where you have this > ` if (lv_obj_is_valid(ps_screen_main) == true && lv_scr_act() == ps_screen_main) {}` Here's an...

Hi @psanyi, thank you! It builds for me. I'm seeing an issue where it crashes at `SDL_Init`. Is there a step I'm missing? When I run `gdb ./bin/main`, I see...

Aha thanks. We should definitely change that value, either in this PR or another. Next, I have the exact same problem as @MarcoGit82 here https://github.com/lvgl/lv_port_pc_vscode/issues/62#issuecomment-2630370155. Do you have this problem...