Results 58 comments of Wilhelm

Are there any experiences already with these boards?

Maybe you should rename `checklistInteractiveBW` to `checklistInteractive` because it is also introduced for the colorLCDs

> And what about loading checklist as "View Notes" ? In my personal view I would prefer to see the "View Notes" with the previosly left state, because this might...

I just tested this PR. At this stage every single line represents a checkable item. I think this could bei improved. In #133 I was thinking of a checklist with...

I don't see much difference in using ``` + Chekable [ ] Checkable Uncheckable ``` concering the parsing, but as a matter of style I would prefer the `[ ]`....

The 6 char problem is located here: https://github.com/EdgeTX/edgetx/blob/d37b3e40518af42b6e54b3bda1b432a8f0431427/radio/src/gui/colorlcd/model_mixer_scripts.cpp#L87 strncpy() does not copy the `\0` if filename is 6 chars (or more), so the string remains unterminated. This ``` strncpy(sd->file, newValue.c_str(),...

Look also at #1318

Looks like this fixed it (display only files according 5 + 3 chars): ``` auto fc = new FileChoice( window, grid.getFieldSlot(), SCRIPTS_MIXES_PATH, SCRIPTS_EXT, LEN_SCRIPT_FILENAME - 1, [=]() { return std::string(sd->file,...

> @wimalopaan that is normal and used at many places to save a few bytes of memory. That being said, the code copying this file name to LUA on query...