fix missing initialization of .bus element when pasting lines, updated intuitive_interface_cheatsheet.sch
This commit is contained in:
parent
8ffe8f1bbe
commit
5792679daf
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 |
|
|
@ -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
Loading…
Reference in New Issue