Index: trunk/src_plugins/io_lihata/write.c =================================================================== --- trunk/src_plugins/io_lihata/write.c (revision 34020) +++ trunk/src_plugins/io_lihata/write.c (revision 34021) @@ -1563,9 +1563,12 @@ pl = lht_dom_node_alloc(LHT_LIST, "conn"); lht_dom_hash_put(nnet, pl); - if ((style != NULL) && (*style == '\0')) style = NULL; - lht_dom_hash_put(nnet, build_text("style", style)); + if (wrver < 8) { /* there is no dedicated field for this since v8: the code relies on the attribute */ + if ((style != NULL) && (*style == '\0')) style = NULL; + lht_dom_hash_put(nnet, build_text("style", style)); + } + /* grow the connection list */ for(t = pcb_termlist_first(&net->conns); t != NULL; t = pcb_termlist_next(t)) { pn = lht_dom_node_alloc(LHT_TEXT, "");