Andy Everitt
Andy Everitt
There is an issue if you have sparse CAM. This can cause CAM operations to be delayed more than expected and then the tool will not be able to reach...
### Is your feature request related to a problem? Please describe Currently adding an `update_manager xxx` to the moonraker config sets the corresponding path to read only in the web...
https://docs.obsidian.md/Reference/TypeScript+API/FileManager/processFrontMatter > [!NOTE] > I am not a JS/TS developer so my terminology is likely wrong **Steps to reproduce:** ```TS await this.app.fileManager.processFrontMatter( sharedFile.file, (frontmatter) => { // Remove the shared...
I can not currently source the ACS70331EOLCTR-2P5B3 current sensors so I have been looking for alternatives. I found this sensor from TI https://www.ti.com/lit/ds/symlink/tmcs1101-q1.pdf?HQS=dis-dk-null-mousermode-dsf-pf-null-wwe&ts=1641839042153 which seems to be approximately the same,...
### What would you like to be added? Currently the location for new notes is global to the project. In my projects I have a structure similar to this: -...
Please can support for creating bottom, top, and system layers in the designer be added. https://docs.lvgl.io/master/details/main-components/display.html#screen-layers
**Is your feature request related to a problem? Please describe.** I am relatively new to LVGL so I may misunderstand the workflow, please correct me if this is correct. Currently...
Hi, question instead of an issue. Would this api be compatible with LVGL v9.2? Would there be any singnificant features that would not be available?
The `LV_STYLE_MIN_WIDTH`, `LV_STYLE_MAX_WIDTH`, `LV_STYLE_MIN_HEIGHT`, and `LV_STYLE_MAX_HEIGHT` properties could not accept `LV_SIZE_CONTENT` ### Notes Now something like this is valid ```c lv_obj_t* cont = lv_obj_create(lv_screen_active()); lv_obj_t* btn = lv_button_create(cont2); lv_label_create(btn); lv_obj_set_flex_flow(cont,...
### LVGL version v9.2.2 ### Platform SDL on Linux ### What happened? ```cpp lv_obj_t* cont = lv_obj_create(); lv_obj_set_size(cont, LV_SIZE_CONTENT, LV_SIZE_CONTENT); lv_obj_set_flex_flow(cont, LV_FLEX_FLOW_COLUMN); lv_obj_t* m_scale = lv_scale_create(cont); lv_obj_set_height(m_scale, 30); lv_scale_set_mode(m_scale, LV_SCALE_MODE_HORIZONTAL_BOTTOM);...