Use DPI-aware insets
Reports usages of java.awt.Insets
and JBUI.insetsXyz()
that can be simplified.
The Insets
instances are not DPI-aware and can result in UI layout problems.
Quick fix performs replacement with JBUI.insets()
or simplifies the expression.
Example:
// bad:
Insets insets1 = new Insets(1, 2, 3, 4);
Insets insets2 = new Insets(1, 2, 1, 2);
Insets insets3 = new Insets(1, 0, 0, 0);
// good:
Insets insets1 = JBUI.insets(1, 2, 3, 4);
Insets insets2 = JBUI.insets(1, 2);
Insets insets3 = JBUI.insetsTop(1);
Locating this inspection
- By ID
Can be used to locate inspection in e.g. Qodana configuration files, where you can quickly enable or disable it, or adjust its settings.
UseDPIAwareInsets- Via Settings dialog
Path to the inspection settings via IntelliJ Platform IDE Settings dialog, when you need to adjust inspection settings directly from your IDE.
Inspection Details | |
---|---|
By default bundled with: | |
Can be installed with plugin: | Plugin DevKit, 242.22892 |
Last modified: 11 September 2024