Skip to content

Instantly share code, notes, and snippets.

@alhimik45
Last active December 31, 2015 17:29
Show Gist options
  • Save alhimik45/8020970 to your computer and use it in GitHub Desktop.
Save alhimik45/8020970 to your computer and use it in GitHub Desktop.
(ns test.core
(:use seesaw.core)
(:require
[seesaw.rsyntax :as r]))
(defn -main [& args]
(invoke-later
(-> (frame
:title "Hello",
:content
(doto
(r/text-area
:wrap-lines? true
; :anti-aliasing-enabled true ; we can't use this
)
(.setAntiAliasingEnabled true)))
show!)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment