fix missing initialization of .bus element when pasting lines, updated intuitive_interface_cheatsheet.sch

This commit is contained in:
stefan schippers 2024-03-11 15:16:26 +01:00
parent 8ffe8f1bbe
commit 5792679daf
3 changed files with 12001 additions and 11082 deletions

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 2.0 MiB

After

Width:  |  Height:  |  Size: 2.2 MiB

View File

@ -251,6 +251,10 @@ static void merge_line(FILE *fd)
} else {
ptr[i].dash = 0;
}
if(!strboolcmp(get_tok_value(ptr[i].prop_ptr, "bus", 0), "true") )
ptr[i].bus = 1;
else
ptr[i].bus = 0;
select_line(c,i, SELECTED, 1);
xctx->lines[c]++;
}

File diff suppressed because one or more lines are too long