updateSelectedLayerSize method
更新选中图层的大小
Implementation
bool updateSelectedLayerSize(double size) {
if (_selectedLayerId != null && _layers.containsKey(_selectedLayerId)) {
_layers[_selectedLayerId]!.fontSize = size;
return true;
}
return false;
}