Skip to content

Commit d87db6c

Browse files
committed
editor yellow click on only pin selected to set data
1 parent 38b0175 commit d87db6c

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

src/system/platform/component/app/Editor/Component.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29300,7 +29300,14 @@ export class Editor_ extends Element<HTMLDivElement, Props_> {
2930029300
keys(this._selected_node_id)
2930129301
)
2930229302

29303-
if (this._is_node_selected(node_id)) {
29303+
if (
29304+
link_pin_node_ids.length + merge_node_ids.length ===
29305+
this._selected_node_count
29306+
) {
29307+
should_copy = false
29308+
}
29309+
29310+
if (should_copy) {
2930429311
this.copy_selected_nodes(true)
2930529312
} else {
2930629313
if (this._is_pin_node_id(node_id)) {

0 commit comments

Comments
 (0)