From 4dc5defef0904271d8734cbfaffeef00e496ac82 Mon Sep 17 00:00:00 2001 From: Denis Zhdanov Date: Wed, 11 May 2011 19:39:21 +0400 Subject: [PATCH] IDEA-69153 Editor: Improve performance of caret movement via arrow keys Explicitly added 'sun.java2d.d3d=false' property as our Windows users reported that editor sometimes performs rather bad even with 'sun.java2d.noddraw=true' (see comments to the ticket) --- bin/idea.properties | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/bin/idea.properties b/bin/idea.properties index e91715890671..e431fbdf7b04 100644 --- a/bin/idea.properties +++ b/bin/idea.properties @@ -45,4 +45,9 @@ idea.cycle.buffer.size=1024 # Disabling this property may lead to visual glitches like blinking and fail to repaint # on certain display adapter cards. #---------------------------------------------------------------------- -sun.java2d.noddraw=true \ No newline at end of file +sun.java2d.noddraw=true + +#---------------------------------------------------------------------- +# Removing this property may lead to editor performance degradation under Windows. +#---------------------------------------------------------------------- +sun.java2d.d3d=false \ No newline at end of file