Changeset 10422 in josm


Ignore:
Timestamp:
2016-06-19T02:15:46+02:00 (8 years ago)
Author:
Don-vip
Message:

fix #12992 - Way with waterway=dam cause false validator warning

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/data/validator/geometry.mapcss

    r10389 r10422  
    270270
    271271/* #12646 */
    272 way[waterway][waterway!=canal]!:closed >[index=-1] node!:connection:in-downloaded-area {
     272way[waterway][waterway!=canal][waterway!=dam]!:closed >[index=-1] node!:connection:in-downloaded-area {
    273273  throwWarning: tr("Waterway ends without a connection to another waterway or the direction of the waterway is wrong.");
    274274}
  • trunk/src/org/openstreetmap/josm/gui/dialogs/properties/PropertiesDialog.java

    r10420 r10422  
    14281428                tagRowSorter.convertRowIndexToModel(tagTable.getSelectedRow());
    14291429            } catch (IndexOutOfBoundsException ignore) {
    1430                 Main.debug(ignore);
    1431                 Main.debug("Clearing tagTable selection");
     1430                Main.trace(ignore);
     1431                Main.trace("Clearing tagTable selection");
    14321432                tagTable.clearSelection();
    14331433            }
Note: See TracChangeset for help on using the changeset viewer.