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

11 lines
251 B
Scala
Raw Normal View History

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