I have a problem with a swing table. When I try to compose and show a simple table, it shows without column names.
What I've done:
First I have to say that I am using [seesaw "1.4.2"] .
Then:
;; Clojure 1.4.0 (require '[seesaw.core :as ss]) (ss/native!) (def main-window (-> (ss/frame :title "Main window") ss/pack! (ss/config! :minimum-size [320 :by 240]) ss/show!)) (def display
what i get http://img.leprosorium.com/1663368
A table will appear, but without the column names, which I think should be "one" and "another." What is wrong here?
It also happens if I use the exact same code as in the official wiki: https://github.com/daveray/seesaw/wiki/Tables
Update:
I forgot to mention, I'm using JDK 1.7u10, maybe that makes sense.
source share