BattleScribe / Release

Bug tracking for the release (live) version of BattleScribe
13 stars 2 forks source link

[Bug] Linux application doesn't scale resolution #242

Open byarmis opened 2 years ago

byarmis commented 2 years ago

Steps to reproduce

  1. Download the application
  2. Unzip it
  3. Run ./RosterEditor.sh

Expected behavior

Text and buttons are roughly the same size as it is in other programs (Chrome, terminal, Discord, Spotify, etc.)

Actual behavior

Text is very small

Screenshot from 2021-09-17 13-39-25

Configuration

markblokpoel commented 2 years ago

I was looking for a solution to this issue and came across your post. Having the same issue with the same OS. Java should scale automatically depending on OS display settings, but only if the app uses GTK+ 3. Apps using Java2D and AWT most likely bypass OS drawing routines and hence do not scale. Not sure what BS uses, but if it is Java2D or AWT this might not be easily solved...

See this page for details: https://openjdk.java.net/jeps/263