mirror of
https://github.com/overte-org/overte.git
synced 2025-04-19 15:43:50 +02:00
Increase default entity search radius to 100m
This commit is contained in:
parent
a553022adf
commit
005851a74a
2 changed files with 3 additions and 3 deletions
|
@ -235,7 +235,7 @@
|
|||
<div id="entity-list">
|
||||
<div id="search-area">
|
||||
<input type="text" class="search" id="filter" placeholder="Filter" />
|
||||
<span id="radius-and-unit"><input type="number" id="radius" value="50" /> m</span>
|
||||
<span id="radius-and-unit"><input type="number" id="radius" value="100" /> m</span>
|
||||
</div>
|
||||
<table id="entity-table">
|
||||
<thead>
|
||||
|
@ -256,7 +256,7 @@
|
|||
</table>
|
||||
</div>
|
||||
<div id="no-entities">
|
||||
No entities found within a <span id="no-entities-radius">50</span> meter radius. Try moving to a different location and refreshing.
|
||||
No entities found within a <span id="no-entities-radius">100</span> meter radius. Try moving to a different location and refreshing.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -4,7 +4,7 @@ EntityListTool = function(opts) {
|
|||
var url = Script.resolvePath('html/entityList.html');
|
||||
var webView = new WebWindow('Entities', url, 200, 280, true);
|
||||
|
||||
var searchDiameter = 100;
|
||||
var searchDiameter = 200;
|
||||
|
||||
var visible = false;
|
||||
|
||||
|
|
Loading…
Reference in a new issue