6859935: REGRESSION: Settings are missing in JCP/Advanced tab on windows

Reviewed-by: art
This commit is contained in:
Dmitry Cherepanov 2009-07-22 13:00:11 +04:00
parent e5047864cd
commit 6293f73bd8

View file

@ -886,14 +886,12 @@ public class WToolkit extends SunToolkit implements Runnable {
* this should be done in lazilyLoadDesktopProperty() only.
*/
protected synchronized void initializeDesktopProperties() {
desktopProperties.put("DnD.Autoscroll.initialDelay", Integer.valueOf(50));
desktopProperties.put("DnD.Autoscroll.interval", Integer.valueOf(50));
try {
desktopProperties.put("DnD.Autoscroll.initialDelay",
Integer.valueOf(50));
desktopProperties.put("DnD.Autoscroll.interval",
Integer.valueOf(50));
desktopProperties.put("Shell.shellFolderManager",
Class.forName("sun.awt.shell.Win32ShellFolderManager2"));
} catch (ClassNotFoundException ex) {
}
"sun.awt.shell.Win32ShellFolderManager2");
}
/*