Layout Copy no longer prompts for a new layout name in V26.2.7
Comments
-
Hi, it seems was an intended change, but it wasn't reflected in the documentation.
0 -
Thanks for the clarification.
Would it be possible to add a system variable or a Settings option to choose between automatic naming and prompting for the layout name? The previous workflow was more convenient for many users and also matches the current documentation.0 -
Could you please create a feature support request for this?
0 -
Does this lisp work for now ?
(defun c:laycp ( / layname laymane2)
(setq layname (strcase (getstring "\nEnter Layout name to copy ")))
(setq layname2 (getstring "\nEnter New layout name "))(command "layout" "C" layname layname2)
(princ)
)
0 -
Hi @ALANH , yes, this lisp works - only copying via Layout context menu was changed, it doesn't influence the Layout command behavior.
0 -
Thank you for your suggestion. I have now submitted a Feature Request through the Support portal.
0

