Ignore:
Timestamp:
11/16/2007 09:22:15 PM (19 years ago)
Author:
David Owen <dsowen@…>
branch-nick:
tui
revision id:
dsowen@fugue88.ws-20071116212215-8drk5zylbwy4me0v
Message:

Fix: force grid data to string to display it.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/grid/display.lisp

    r57 r58  
    7777(defun draw-cell (grid row column y x)
    7878  (with-slots (data window) grid
    79     (let ((text (item data row column)))
     79    (let ((text (format nil "~A" (item data row column))))
    8080      (unless (uses-display-strings data row column)
    8181        (setf text (enquote text)))
Note: See TracChangeset for help on using the changeset viewer.