Quote:
Originally Posted by kovidgoyal
Released version 5.99.1 with fixes for all issues reported so far (other than thiago's checkbox shadows)
|
My issues are caused by Qt's new High DPI Scaling policy. It only affects those using a non-integer scale factor. In my case, I use 125%. This is a known issue of Qt6, as pointed
here.
This causes some graphical glitches. In my case:
- Kind of a shadow on some checkboxes
- Missing separators
- Small icons are drawed with poor quality (the same ones that looked ok on Qt5).
- The whole calibre interface got "bigger". I have bigger icons, bigger line spaces, etc.
For the icons on my plugins, I just used larger ones, but the rest of the problems remained. So, I dealed with it by setting this environment variable:
Code:
QT_ENABLE_HIGHDPI_SCALING = 0
This is the standard look. Bigger interface, missing separators on plugin menu.
After setting the environment variable.