Commit e2a1d0ef authored by Matthias Betz's avatar Matthias Betz
Browse files

increase loops for hiding models for more consistency in actual hiding

parent 2e3ca2f7
......@@ -20,7 +20,7 @@ const hidingFeatures = [];
const hidingListener = function(tile) {
let allHidden = true;
for (const featureToHide of hidingFeatures) {
if (featureToHide.loops < 3) {
if (featureToHide.loops < 10) {
allHidden = false;
const feature = tile.content.getFeature(featureToHide.id);
if (feature !== undefined) {
......@@ -366,7 +366,7 @@ export default function smartVillagesPlugin(config, baseUrl) {
actions.push({
id: 'delete',
name: 'Objekt löschen',
name: 'Objekt entfernen',
callback() {
vcsApp.maps.activeMap.getEntities().remove(model);
removePlacedModel(model);
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment