Index: trunk/src_plugins/propedit/propedit.c =================================================================== --- trunk/src_plugins/propedit/propedit.c (revision 26196) +++ trunk/src_plugins/propedit/propedit.c (revision 26197) @@ -110,6 +110,12 @@ else if (strcmp(cmd, "selection") == 0) pe->selection = 1; else { + char *end; + pcb_idpath_t *idp = strtol(cmd, &end, 0); + if ((*end == '\0') && (idp != NULL) && (htpp_get(&pcb_fgw.ptr_tbl, idp) == PCB_PTR_DOMAIN_IDPATH)) { + pcb_idpath_list_append(&pe->objs, idp); + return 0; + } if (!quiet) pcb_message(PCB_MSG_ERROR, "Invalid scope: %s\n", cmd); return FGW_ERR_ARG_CONV;