Fix "has script" entities list icon

This commit is contained in:
David Rowe 2016-09-07 11:12:04 +12:00
parent 83593087b6
commit 156866f835
3 changed files with 6 additions and 2 deletions

View file

@ -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;

View file

@ -61,7 +61,7 @@
<th id="entity-texturesSize">T Size<span class="sort-order"></span></th>
<th id="entity-hasTransparent"><span class="glyph">'</span><span class="sort-order"></span></th>
<th id="entity-drawCalls">Draws<span class="sort-order"></span></th>
<th colspan="2" id="entity-hasScript"><span class="glyph">Q</span><span class="sort-order"></span></th>
<th colspan="2" id="entity-hasScript"><span class="glyph">k</span><span class="sort-order"></span></th>
</tr>
</thead>
<tbody class="list" id="entity-table-body">

View file

@ -17,7 +17,7 @@ const DESCENDING_STRING = '&#x25BE;';
const LOCKED_GLYPH = "&#xe006;";
const VISIBLE_GLYPH = "&#xe007;";
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.