From 156866f835f3c45e5d6914c21783c93b76715eea Mon Sep 17 00:00:00 2001 From: David Rowe Date: Wed, 7 Sep 2016 11:12:04 +1200 Subject: [PATCH] Fix "has script" entities list icon --- scripts/system/html/css/edit-style.css | 4 ++++ scripts/system/html/entityList.html | 2 +- scripts/system/html/js/entityList.js | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/scripts/system/html/css/edit-style.css b/scripts/system/html/css/edit-style.css index 6405e9ef6c..a0e4bf0f82 100644 --- a/scripts/system/html/css/edit-style.css +++ b/scripts/system/html/css/edit-style.css @@ -977,6 +977,10 @@ textarea:enabled[scrolling="true"]::-webkit-resizer { left: 0; } +#entity-table th#entity-hasScript .glyph { + text-transform: none; +} + #entity-table thead .sort-order { display: inline-block; width: 8px; diff --git a/scripts/system/html/entityList.html b/scripts/system/html/entityList.html index 8de77dc707..fc135aba42 100644 --- a/scripts/system/html/entityList.html +++ b/scripts/system/html/entityList.html @@ -61,7 +61,7 @@ T Size ' Draws - Q + k diff --git a/scripts/system/html/js/entityList.js b/scripts/system/html/js/entityList.js index cb55437b96..c83520b74d 100644 --- a/scripts/system/html/js/entityList.js +++ b/scripts/system/html/js/entityList.js @@ -17,7 +17,7 @@ const DESCENDING_STRING = '▾'; const LOCKED_GLYPH = ""; const VISIBLE_GLYPH = ""; const TRANSPARENCY_GLYPH = "'"; -const SCRIPT_GLYPH = "Q"; +const SCRIPT_GLYPH = "k"; const DELETE = 46; // Key code for the delete key. const MAX_ITEMS = Number.MAX_VALUE; // Used to set the max length of the list of discovered entities.