Index: trunk/src_plugins/propedit/propsel.c =================================================================== --- trunk/src_plugins/propedit/propsel.c (revision 31236) +++ trunk/src_plugins/propedit/propsel.c (revision 31237) @@ -357,6 +357,7 @@ static int attr_key_has_side_effect(const char *key) { if (strcmp(key, "tight_clearance") == 0) return 1; + if (strcmp(key, "mirror_x") == 0) return 1; return 0; } @@ -392,8 +393,10 @@ pcb_uchg_attr(st->pcb, obj, key, newval); else rnd_attribute_put(list, key, newval); - if ((obj != NULL) && side_effect) + if ((obj != NULL) && side_effect) { + pcb_obj_post(obj); + } st->set_cnt++; }