Stop Ctrl+A from selecting artboards

This commit is contained in:
Keavon Chambers
2023-12-06 14:39:43 -08:00
parent 01499de8e7
commit 165c747d62
2 changed files with 5 additions and 1 deletions
@@ -668,7 +668,7 @@ impl MessageHandler<DocumentMessage, DocumentInputs<'_>> for DocumentMessageHand
})
}
SelectAllLayers => {
let all = self.metadata().all_layers().map(|layer| layer.to_node()).collect();
let all = self.metadata().all_layers_except_artboards().map(|layer| layer.to_node()).collect();
responses.add(NodeGraphMessage::SelectedNodesSet { nodes: all });
}
SelectedLayersLower => {