mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
Disable LCD rendering for Retina displays by default
This commit is contained in:
@@ -97,7 +97,7 @@ public class UISettings extends SimpleModificationTracker implements PersistentS
|
||||
public boolean ACTIVATE_RIGHT_EDITOR_ON_CLOSE = false;
|
||||
@Deprecated
|
||||
public boolean ANTIALIASING_IN_EDITOR = true;
|
||||
public boolean ANTIALIASING_IN_IDE = ANTIALIASING_IN_EDITOR;
|
||||
public boolean ANTIALIASING_IN_IDE = !UIUtil.isRetina() && ANTIALIASING_IN_EDITOR;
|
||||
public LCDRenderingScope LCD_RENDERING_SCOPE = LCDRenderingScope.IDE;
|
||||
public boolean USE_LCD_RENDERING_IN_EDITOR = true;
|
||||
public boolean MOVE_MOUSE_ON_DEFAULT_BUTTON = false;
|
||||
|
||||
Reference in New Issue
Block a user