scalafx-utils/src/main/scala/org/gerweck/scalafx/util/scene.scala
Sarah Gerweck 1fb1d5db1f Update to ScalaFX for Java 1.8.0u92
Also, update the version number of Gerweck Utils.
2016-05-04 22:26:28 -07:00

11 lines
274 B
Scala

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