From 2c9f044e52ecc99b0ab719ed932fb9fd6b414da7 Mon Sep 17 00:00:00 2001 From: Ansis Brammanis Date: Thu, 21 Feb 2013 11:33:43 -0500 Subject: [PATCH] Fix tageditor type icon --- js/id/ui/tageditor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/id/ui/tageditor.js b/js/id/ui/tageditor.js index b7175ed39..ca348f935 100644 --- a/js/id/ui/tageditor.js +++ b/js/id/ui/tageditor.js @@ -42,7 +42,7 @@ iD.ui.TagEditor = function() { }); typelabel.append('div') - .attr('class', 'icon icon-pre-text' + (presetMatch ? ' maki-' + presetMatch.icon + '-24' : '')); + .attr('class', 'icon icon-pre-text' + (presetMatch ? ' preset-' + presetMatch.icon : '')); typelabel.append('button') .attr('tabindex', -1)