[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
sequence-dialog-item scroll and grow bugs?
- To: info-mcl@cambridge.apple.com
- Subject: sequence-dialog-item scroll and grow bugs?
- From: cfry@harlequin.com (Christopher Fry)
- Date: Mon, 15 Aug 1994 13:31:18 -0400
Eval the below code in MCL 2.
For the sequence-dialog-item:
- Despite the fact that hscrollp is t, the horizontal scroll bar is
grayed-out and inoperative, even though the full strings of the
items are not shown.
- Also there is no grow icon, just an empty white square in the
lower right corner of the sequence-dialog item. Dragging
it has no effect.
(make-instance 'window
:view-subviews (list (make-instance 'sequence-dialog-item
:view-size #@(50 40)
:table-sequence '("abcdefghijklmn"
"opqrstuvwxyz"
"123456789012"
"!@#$%^&*_+=")
:table-vscrollp t
:table-hscrollp t
:grow-icon-p t)))
Advice greatly appreciated.
CFry