disable layerlist smoothscrolling

This commit is contained in:
juliandescottes 2017-02-04 13:43:49 +01:00
parent 8928f3e626
commit f039a89572

View File

@ -35,7 +35,7 @@
// Ensure the currently the selected layer is visible.
var currentLayerEl = this.layersListEl.querySelector('.current-layer-item');
if (currentLayerEl) {
currentLayerEl.scrollIntoView({behavior: 'smooth'});
currentLayerEl.scrollIntoView();
}
};