Stop Ctrl+A from selecting artboards
This commit is contained in:
parent
01499de8e7
commit
165c747d62
|
|
@ -46,6 +46,10 @@ impl DocumentMetadata {
|
|||
self.root().decendants(self)
|
||||
}
|
||||
|
||||
pub fn all_layers_except_artboards(&self) -> impl Iterator<Item = LayerNodeIdentifier> + '_ {
|
||||
self.all_layers().filter(move |layer| !self.artboards.contains(layer))
|
||||
}
|
||||
|
||||
pub fn selected_layers(&self) -> impl Iterator<Item = LayerNodeIdentifier> + '_ {
|
||||
self.all_layers().filter(|layer| self.selected_nodes.contains(&layer.to_node()))
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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 => {
|
||||
|
|
|
|||
Loading…
Reference in New Issue