Discussions
Categories
- 196.9K All Categories
- 2.2K Data
- 239 Big Data Appliance
- 1.9K Data Science
- 450.3K Databases
- 221.7K General Database Discussions
- 3.8K Java and JavaScript in the Database
- 31 Multilingual Engine
- 550 MySQL Community Space
- 478 NoSQL Database
- 7.9K Oracle Database Express Edition (XE)
- 3K ORDS, SODA & JSON in the Database
- 546 SQLcl
- 4K SQL Developer Data Modeler
- 187K SQL & PL/SQL
- 21.3K SQL Developer
- 295.9K Development
- 17 Developer Projects
- 138 Programming Languages
- 292.6K Development Tools
- 107 DevOps
- 3.1K QA/Testing
- 646K Java
- 28 Java Learning Subscription
- 37K Database Connectivity
- 155 Java Community Process
- 105 Java 25
- 22.1K Java APIs
- 138.1K Java Development Tools
- 165.3K Java EE (Java Enterprise Edition)
- 18 Java Essentials
- 160 Java 8 Questions
- 86K Java Programming
- 80 Java Puzzle Ball
- 65.1K New To Java
- 1.7K Training / Learning / Certification
- 13.8K Java HotSpot Virtual Machine
- 94.3K Java SE
- 13.8K Java Security
- 204 Java User Groups
- 24 JavaScript - Nashorn
- Programs
- 442 LiveLabs
- 38 Workshops
- 10.2K Software
- 6.7K Berkeley DB Family
- 3.5K JHeadstart
- 5.7K Other Languages
- 2.3K Chinese
- 171 Deutsche Oracle Community
- 1.1K Español
- 1.9K Japanese
- 232 Portuguese
Button Width Calculated Wrong under Windows?

I am developing a JavaFX application under Java 8 on my Ubuntu 14.04 (32 bit) system. When I run it on the Ubuntu box, all is fine, but when I run it under Windows 7 Home Premium (64 bit) with the same Java8 release installed, all my buttons have their text ellipsised (sp?). Any ideas on why the behavior is different? Or is this a bug in JavaFX? Here are the particulars:
fxml:
<?xml version="1.0" encoding="UTF-8"?>
<?import java.lang.*?>
<?import java.util.*?>
<?import javafx.geometry.*?>
<?import javafx.scene.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<?import javafx.scene.text.*?>
<AnchorPane id="AnchorPane" prefHeight="91.0" prefWidth="-1.0" xmlns:fx="http://javafx.com/fxml">
<children>
<VBox alignment="CENTER" prefHeight="91.0" prefWidth="-1.0" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
<children>
<Label fx:id="tripleButtonText" alignment="TOP_CENTER" contentDisplay="CENTER" prefWidth="-1.0" text="This is some text. There may be several lines." textAlignment="CENTER" />
<HBox alignment="CENTER" fillHeight="false" prefHeight="22.0" prefWidth="-1.0" spacing="10.0" VBox.vgrow="NEVER">
<children>
<Button fx:id="tripleButton1" contentDisplay="CENTER" mnemonicParsing="false" text="Button" prefWidth="-1.0" textAlignment="CENTER" HBox.hgrow="ALWAYS" />
<Button fx:id="tripleButton2" contentDisplay="CENTER" mnemonicParsing="false" text="Button" prefWidth="-1.0" textAlignment="CENTER" HBox.hgrow="ALWAYS" />
<Button fx:id="tripleButton3" contentDisplay="CENTER" mnemonicParsing="false" text="Button" prefWidth="-1.0" textAlignment="CENTER" HBox.hgrow="ALWAYS" />
</children>
<VBox.margin>
<Insets top="14.0" />
</VBox.margin>
</HBox>
</children>
</VBox>
</children>
</AnchorPane>
Java:
java version "1.8.0_05"
Java(TM) SE Runtime Environment (build 1.8.0_05-b13)
Java HotSpot(TM) Server VM (build 25.5-b02, mixed mode)
Answers
-
Turns out this problem only shows up with StageStyle.UTILITY. Any other StageStyle works fine. Sounds like a bug to me.