--- old/src/macosx/classes/sun/lwawt/LWComponentPeer.java 2012-03-11 15:34:07.208236800 +0400 +++ new/src/macosx/classes/sun/lwawt/LWComponentPeer.java 2012-03-11 15:34:06.821214700 +0400 @@ -213,16 +213,8 @@ SwingUtilities3.setDelegateRepaintManager(delegate, new RepaintManager() { @Override public void addDirtyRegion(final JComponent c, final int x, final int y, final int w, final int h) { - if (SunToolkit.isDispatchThreadForAppContext(getTarget())) { - synchronized (getDelegateLock()) { - if (getDelegate().isPaintingForPrint()) { - return; - } - } - } - Rectangle res = SwingUtilities.convertRectangle( - c, new Rectangle(x, y, w, h), getDelegate()); - repaintPeer(res); + repaintPeer(SwingUtilities.convertRectangle( + c, new Rectangle(x, y, w, h), getDelegate())); } }); }