Skip to content

Commit

Permalink
Forgot to disable test.
Browse files Browse the repository at this point in the history
  • Loading branch information
daveray committed Apr 29, 2011
1 parent 1013c7f commit 8e47a6b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/seesaw/examples/cell_renderers.clj
Expand Up @@ -2,7 +2,7 @@
(:use [seesaw core font color]))

(def even-font (font "ARIAL-ITALIC-18"))
(def odd-font (font "ARIAL-18"))
(def odd-font (font "ARIAL--18"))

; Define a render function. The first arg is the renderer (an instance of
; DefaultListCellRenderer). The second holds the state of the cell we're
Expand All @@ -19,11 +19,11 @@
(defn app []
(frame :title "Cell Renderer Example"
:content (scrollable
(listbox :model (range 5 25)
(listbox :model (range 5 25)
:renderer render-fn))))

(defn -main [& args]
(invoke-later (app)))

(-main)
;(-main)

0 comments on commit 8e47a6b

Please sign in to comment.