stupid question, after creating a device in magic ...
# magic
h
stupid question, after creating a device in magic what's the command/macro to update the parameters? I keep seeing it in some tutorials but don't know how to actually do it
t
To work through the GUI, use the keyboard macro Control-P ("p" for "parameter" or "pcell", if you will).
The callback command is
magic::gencell_change
, but that's difficult to work with from the command line. All of the parameters of the cell are stored as properties which you can view while editing the cell with the command `property`; however, changing the property list does not change the cell, which must be deleted and redrawn, which is what
gencell_change
does.
h
Thank you 🙂