diff --git a/data/presets/categories.json b/data/presets/categories.json index 8638106b2..a47833d08 100644 --- a/data/presets/categories.json +++ b/data/presets/categories.json @@ -2,6 +2,7 @@ "geometry": "line", "icon": "highway", "id": "Road", + "icon": "category-roads", "members": [ "highway/residential", "highway/motorway", diff --git a/js/id/ui/preset_grid.js b/js/id/ui/preset_grid.js index ff4bb4494..1ed641149 100644 --- a/js/id/ui/preset_grid.js +++ b/js/id/ui/preset_grid.js @@ -286,7 +286,10 @@ iD.ui.PresetGrid = function(context, entity) { .attr('class','label') .text(name); - entered.append('button') + entered.filter(function(d) { + return !d.members; + }) + .append('button') .attr('tabindex', -1) .attr('class', 'preset-help') .on('click', helpClick, selection)