Index: polygon_act.c =================================================================== --- polygon_act.c (revision 4860) +++ polygon_act.c (revision 4861) @@ -70,7 +70,7 @@ gui->get_coords(_("Select an Object"), &x, &y); if ((type = SearchScreen(x, y, PCB_TYPE_POLYGON, &ptr1, &ptr2, &ptr3)) != PCB_TYPE_NONE) { MorphPolygon((pcb_layer_t *) ptr1, (pcb_polygon_t *) ptr3); - Draw(); + pcb_draw(); IncrementUndoSerialNumber(); } break; @@ -83,7 +83,7 @@ MorphPolygon(layer, polygon); } ENDALL_LOOP; - Draw(); + pcb_draw(); IncrementUndoSerialNumber(); break; }