22.0高度
当ImageView高度超过22.0时,如何避免此结果?
我根本不使用css。我在ImageView的布局下拉菜单中创建了这个Bounds的东西,它甚至不可编辑,22x22似乎是最大尺寸或其他东西,我尝试更改Tab min高度,但它是同样的问题。
<TabPane fx:id="tabs" tabClosingPolicy="UNAVAILABLE" tabMinHeight="50.0" tabMinWidth="150.0" BorderPane.alignment="CENTER">
<tabs>
<Tab fx:id="tabProd" text="TEXT" closable="false">
<graphic>
<ImageView fitHeight="40.0" fitWidth="40.0">
<image>
<Image url="framesFX_icons/production.png" />
</image>
</ImageView>
</graphic>
<content>
...
</content>
</Tab>
</tabs>
</TabPane>
答案 0 :(得分:2)
将tabMaxHeight
设置为大(但低于Double.MAX_VALUE
)似乎可以解决它,所以我猜它是一个错误?
无论如何 - 将最大高度设置为100左右应该足够了。
编辑:可以找到错误报告here