home *** CD-ROM | disk | FTP | other *** search
- Path: sparky!uunet!olivea!apple!cambridge.apple.com!@explorer.dgp.toronto.edu:markt@dgp.toronto.edu
- From: markt@dgp.toronto.edu ("Mark A. Tapia")
- Newsgroups: comp.lang.lisp.mcl
- Subject: Re: BUG: Second sequence doesn't scroll
- Message-ID: <92Aug17.192227edt.144001@explorer.dgp.toronto.edu>
- Date: 17 Aug 92 23:22:25 GMT
- Sender: info-mcl-request@cambridge.apple.com
- Lines: 22
- Approved: comp.lang.lisp.mcl@Cambridge.Apple.C0M
- Original-To: lynch@ils.nwu.edu
- Original-Cc: info-mcl@cambridge.apple.com
-
-
- Rich lynch@ils.nwu.edu writes that there is a bug in MCL2 when
- two distinct views within the same window both contain a subview
- that is a sequence-dialog-item. The scroll bars only work for the
- first view added and not for the second.
-
- I noticed that the code works properly when the two tables are contained
- within the same view. The following works correctly:
- (make-instance 'dialog
- :window-title "Try the far right scroll bar."
- :view-subviews
- (list
- (setq table1 (make-instance 'sequence-dialog-item
- :view-size #@(30 60)
- :view-position #@(4 4)
- :table-hscrollp nil
- :table-sequence '(1 2 3 4 5 6)))
- (setq table2 (make-instance 'sequence-dialog-item
- :view-size #@(30 60)
- :view-position #@(50 4)
- :table-hscrollp nil
- :table-sequence '(1 2 3 4 5 6)))))
-