scalafx-utils/src/main/scala/org/gerweck/scalafx/util/scene.scala

11 lines
274 B
Scala
Raw Normal View History

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 }
}