File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed
src/main/scala/scala/swing Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -43,8 +43,12 @@ class FlowPanel(alignment: FlowPanel.Alignment.Value)(contents0: Component*) ext
43
43
44
44
private def layoutManager : FlowLayout = peer.getLayout.asInstanceOf [FlowLayout ]
45
45
46
- def vGap : Int = layoutManager.getVgap
47
- def vGap_= (n : Int ): Unit = layoutManager.setVgap(n)
48
- def hGap : Int = layoutManager.getHgap
49
- def hGap_= (n : Int ): Unit = layoutManager.setHgap(n)
46
+ def vGap : Int = layoutManager.getVgap
47
+ def vGap_= (n : Int ): Unit = layoutManager.setVgap(n)
48
+
49
+ def hGap : Int = layoutManager.getHgap
50
+ def hGap_= (n : Int ): Unit = layoutManager.setHgap(n)
51
+
52
+ def alignOnBaseline : Boolean = layoutManager.getAlignOnBaseline
53
+ def alignOnBaseline_= (value : Boolean ): Unit = layoutManager.setAlignOnBaseline(value)
50
54
}
You can’t perform that action at this time.
0 commit comments