mirror of
https://github.com/overte-org/overte.git
synced 2025-04-19 16:23:39 +02:00
Fix "has script" entities list icon
This commit is contained in:
parent
83593087b6
commit
156866f835
3 changed files with 6 additions and 2 deletions
|
@ -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;
|
||||
|
|
|
@ -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">
|
||||
|
|
|
@ -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.
|
||||
|
||||
|
|
Loading…
Reference in a new issue