You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
215 B

package org.gerweck.scalafx.util.control
import scalafx.geometry.Pos
import scalafx.scene.control.TableCell
class CenteredTextCell[A, B] extends TableCell[A, B](new GenericCell[A, B]) {
alignment = Pos.Center
}