Missing titlebar on javafx app, with OpenJFX
up vote
0
down vote
favorite
I'm currently building an application with OpenJDK 11 and OpenJFX. It compiles just fine, and starts, but there is no titlebar, and if i click close to the edge of the app, it registers as a click on whatever window is behind it.
I am using intelliJ idea, and it took a while to figure out how to even use openjfx with it, anyhow, here's the system details:
running elementary OS 5.0 Juno (based off of Ubuntu 18.04, everything is GTK)
IntelliJ Idea (Community) 2018 installed as a snap.
OpenJFX sdk downloaded from here: OpenJFX from Gluon
I've just made a new javaFX app, and added the dir /javafx-sdk-11.0.1/lib/ to external libraries, and then went to run -> edit configurations and added vm options --module-path <path>/javafx-sdk-11.0.1/lib --add-modules=javafx.controls,javafx.fxml,javafx.base
controller and everything seems to work, but the resulting window looks like this:
Does someone know just what i'm doing wrong here?
java javafx openjfx
add a comment |
up vote
0
down vote
favorite
I'm currently building an application with OpenJDK 11 and OpenJFX. It compiles just fine, and starts, but there is no titlebar, and if i click close to the edge of the app, it registers as a click on whatever window is behind it.
I am using intelliJ idea, and it took a while to figure out how to even use openjfx with it, anyhow, here's the system details:
running elementary OS 5.0 Juno (based off of Ubuntu 18.04, everything is GTK)
IntelliJ Idea (Community) 2018 installed as a snap.
OpenJFX sdk downloaded from here: OpenJFX from Gluon
I've just made a new javaFX app, and added the dir /javafx-sdk-11.0.1/lib/ to external libraries, and then went to run -> edit configurations and added vm options --module-path <path>/javafx-sdk-11.0.1/lib --add-modules=javafx.controls,javafx.fxml,javafx.base
controller and everything seems to work, but the resulting window looks like this:
Does someone know just what i'm doing wrong here?
java javafx openjfx
3
Can you try with-Djdk.gtk.version=2
? See possibly related question.
– José Pereda
yesterday
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I'm currently building an application with OpenJDK 11 and OpenJFX. It compiles just fine, and starts, but there is no titlebar, and if i click close to the edge of the app, it registers as a click on whatever window is behind it.
I am using intelliJ idea, and it took a while to figure out how to even use openjfx with it, anyhow, here's the system details:
running elementary OS 5.0 Juno (based off of Ubuntu 18.04, everything is GTK)
IntelliJ Idea (Community) 2018 installed as a snap.
OpenJFX sdk downloaded from here: OpenJFX from Gluon
I've just made a new javaFX app, and added the dir /javafx-sdk-11.0.1/lib/ to external libraries, and then went to run -> edit configurations and added vm options --module-path <path>/javafx-sdk-11.0.1/lib --add-modules=javafx.controls,javafx.fxml,javafx.base
controller and everything seems to work, but the resulting window looks like this:
Does someone know just what i'm doing wrong here?
java javafx openjfx
I'm currently building an application with OpenJDK 11 and OpenJFX. It compiles just fine, and starts, but there is no titlebar, and if i click close to the edge of the app, it registers as a click on whatever window is behind it.
I am using intelliJ idea, and it took a while to figure out how to even use openjfx with it, anyhow, here's the system details:
running elementary OS 5.0 Juno (based off of Ubuntu 18.04, everything is GTK)
IntelliJ Idea (Community) 2018 installed as a snap.
OpenJFX sdk downloaded from here: OpenJFX from Gluon
I've just made a new javaFX app, and added the dir /javafx-sdk-11.0.1/lib/ to external libraries, and then went to run -> edit configurations and added vm options --module-path <path>/javafx-sdk-11.0.1/lib --add-modules=javafx.controls,javafx.fxml,javafx.base
controller and everything seems to work, but the resulting window looks like this:
Does someone know just what i'm doing wrong here?
java javafx openjfx
java javafx openjfx
asked yesterday
user3801839
6101619
6101619
3
Can you try with-Djdk.gtk.version=2
? See possibly related question.
– José Pereda
yesterday
add a comment |
3
Can you try with-Djdk.gtk.version=2
? See possibly related question.
– José Pereda
yesterday
3
3
Can you try with
-Djdk.gtk.version=2
? See possibly related question.– José Pereda
yesterday
Can you try with
-Djdk.gtk.version=2
? See possibly related question.– José Pereda
yesterday
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
Thanks to José Pereda
It was exactly that which fixed it. See the question he linked for details: problems with gtk3 and javafx
Anyhow, in intelliJ it's solved by going to Run -> Configurations and adding -Djdk.gtk.version=2
to the 'VM Options'
You can file a bug for this issue as well: github.com/javafxports/openjdk-jfx/issues
– José Pereda
yesterday
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
Thanks to José Pereda
It was exactly that which fixed it. See the question he linked for details: problems with gtk3 and javafx
Anyhow, in intelliJ it's solved by going to Run -> Configurations and adding -Djdk.gtk.version=2
to the 'VM Options'
You can file a bug for this issue as well: github.com/javafxports/openjdk-jfx/issues
– José Pereda
yesterday
add a comment |
up vote
0
down vote
Thanks to José Pereda
It was exactly that which fixed it. See the question he linked for details: problems with gtk3 and javafx
Anyhow, in intelliJ it's solved by going to Run -> Configurations and adding -Djdk.gtk.version=2
to the 'VM Options'
You can file a bug for this issue as well: github.com/javafxports/openjdk-jfx/issues
– José Pereda
yesterday
add a comment |
up vote
0
down vote
up vote
0
down vote
Thanks to José Pereda
It was exactly that which fixed it. See the question he linked for details: problems with gtk3 and javafx
Anyhow, in intelliJ it's solved by going to Run -> Configurations and adding -Djdk.gtk.version=2
to the 'VM Options'
Thanks to José Pereda
It was exactly that which fixed it. See the question he linked for details: problems with gtk3 and javafx
Anyhow, in intelliJ it's solved by going to Run -> Configurations and adding -Djdk.gtk.version=2
to the 'VM Options'
answered yesterday
user3801839
6101619
6101619
You can file a bug for this issue as well: github.com/javafxports/openjdk-jfx/issues
– José Pereda
yesterday
add a comment |
You can file a bug for this issue as well: github.com/javafxports/openjdk-jfx/issues
– José Pereda
yesterday
You can file a bug for this issue as well: github.com/javafxports/openjdk-jfx/issues
– José Pereda
yesterday
You can file a bug for this issue as well: github.com/javafxports/openjdk-jfx/issues
– José Pereda
yesterday
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53372200%2fmissing-titlebar-on-javafx-app-with-openjfx%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
3
Can you try with
-Djdk.gtk.version=2
? See possibly related question.– José Pereda
yesterday