fix bug in "gui/properties" (dialog)
This commit is contained in:
parent
8f9565a6e0
commit
776110d14a
1 changed files with 4 additions and 3 deletions
|
|
@ -84,15 +84,16 @@
|
|||
|
||||
(defun update-meta-class-names (index)
|
||||
(unless (or *ignore-update*
|
||||
(eql -1 index))
|
||||
(= -1 index))
|
||||
(let ((object (nth index *qml-stack*)))
|
||||
(! "setText" *meta-class-names* (x:join (rest (super-class-names object)) " - "))
|
||||
(show object t))))
|
||||
|
||||
(defun show (&optional object update)
|
||||
(when object
|
||||
(setf *object* object
|
||||
*qml-stack* (symbol-value (find-symbol (symbol-name :*qml-stack*) :qsel)))
|
||||
(setf *object* object)
|
||||
(when (find-package :qsel)
|
||||
(setf *qml-stack* (symbol-value (find-symbol (symbol-name :*qml-stack*) :qsel))))
|
||||
(let ((classes (super-class-names *object*))
|
||||
(*ignore-update* t))
|
||||
(if *qml-stack*
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue