scalafx-utils/src/main/scala/org/gerweck/scalafx/util/scene.scala
Sarah Gerweck dc8949d54c Much progress on observables.
Still some work to do on making the syntax work how we want.
2015-04-16 23:51:58 -07:00

11 lines
251 B
Scala

package org.gerweck.scalafx.util
import scalafx.geometry.Orientation._
import scalafx.scene.control._
object Separators {
def vertical() = new Separator { orientation = VERTICAL }
def horizontal() = new Separator { orientation = HORIZONTAL }
}