Index: trunk/doc/TODO =================================================================== --- trunk/doc/TODO (revision 36082) +++ trunk/doc/TODO (revision 36083) @@ -1,7 +1,7 @@ 0. old, still waiting for ack 1. For the upcoming release =============================================================================== -- FEATURE: "polygon cleared out of existence" message should have the #id and layer; maybe query() support? [report: Vuokko] ++ FEATURE: "polygon cleared out of existence" message should have the #id and layer; maybe query() support? [report: Vuokko] - FEATURE: propedit board, e.g. {i c p} board tab attributes, should include thermal scale [report: Igor2] + BUG: if ./configure was compiled with an old version of librnd, but now requires a newer version, ./configure it doesn't recompile it enough - missing dep? [report: Erich] - BUG: load board, save as under different name -> window title shows old name [report: barjac] Index: trunk/src/polygon.c =================================================================== --- trunk/src/polygon.c (revision 36082) +++ trunk/src/polygon.c (revision 36083) @@ -332,9 +332,11 @@ } p->Clipped = biggest(merged); assert(!p->Clipped || rnd_poly_valid(p->Clipped)); - if (!p->Clipped) + if (!p->Clipped) { rnd_message(RND_MSG_WARNING, "Polygon #%ld cleared out of existence near (%$mm, %$mm)\n", p->ID, (p->BoundingBox.X1 + p->BoundingBox.X2) / 2, (p->BoundingBox.Y1 + p->BoundingBox.Y2) / 2); + rnd_message(RND_MSG_WARNING, "You can propedit it using action: propedit(object:%ld) or turn on poly as drawn frame and look around the above coords\n", p->ID); + } return 1; }