disco420
disco420

Reputation: 35

Intellij IDEA JavaFX Scene Builder different resolution to the rest of the application

I have this issue with the JavaFX Scene Builder. It works as intended but the resolution seems to be lower than the rest of the application.

Intellij IDEA did update recently to the 2018 version and thats when the issue started. I have tried downgrading to the previous version but the issue is still there.

Is there a way that I can revert the settings for Scene Builder or is there a setting that I have missed? Can't find anything about it online.

TIA

Upvotes: 1

Views: 3682

Answers (2)

ucMax
ucMax

Reputation: 5438

I thought this is a scaling issue, follow the bellow steps to fix it:

  1. right click on the IntelliJ.exe file.
  2. select Properties | Compatibility.
  3. check the Compatibility mode check box and select the Windows 8 from the drop list.
  4. click Change high DPI settings.
  5. check the Program DPI check box.
  6. check the High DPI scaling override check box and select the System (Enhanced) from the drop list.
  7. restart the ide.

Upvotes: 1

CrazyCoder
CrazyCoder

Reputation: 401965

It's a known issue.

Current workaround is to add -Dsun.java2d.uiScale.enabled=false in Help | Edit Custom VM Options.

Upvotes: 8

Related Questions