In the manual it says: " After evaluating, you may need to select the factory box and press m
to refresh the miniview."
I need that to happen automatically.
The boxframes.lisp file holds the method definition for the miniview to change. Any suggestions on what to change in that code to make it happen automatically after slot evaluation?
(defmethod change-edit-mode ((self boxEditorFrame))
“Showpict T Showpict nil Showpict T Showpict nil,…”
(om-without-interrupts
(if (showpict (object self))
(progn
(setf (showpict (object self)) nil)
(when (minipict (iconview self))
(om-kill-picture (minipict (iconview self)))
(setf (minipict (iconview self)) nil))
(om-invalidate-view self))
(progn
(setf (showpict (object self)) t)
(update-miniview (iconview self) (value (object self)))))))
The update-miniview method in this last line has many definitions in different files.
Maybe the one that I need to change is the one in musminiboxes.lisp, that has the defmethod with a voice parameter, which is the type of object that I’m using. (it is disabled, commented)