39404142434445464748
protected void doPerformAction() { Map map = editor.getCurrentMap(); int layerIndex = editor.getCurrentLayerIndex(); if (layerIndex > 0) { map.swapLayerDown(layerIndex); editor.setCurrentLayer(layerIndex - 1); } } }
37383940414243444546
3334353637383940414243
protected void doPerformAction() { Map map = editor.getMap(); int layerIndex = editor.getCurrentLayerIndex(); if (layerIndex > 0) { map.swapLayerDown(layerIndex); editor.setCurrentLayer(layerIndex - 1); } } @Override