JDK-5072787 : Need Low and High Contrast Icons for a11y themeing (Java Webstart)
  • Type: Bug
  • Component: deploy
  • Sub-Component: deployment_toolkit
  • Affected Version: cinnabar
  • Priority: P3
  • Status: Closed
  • Resolution: Duplicate
  • OS: linux
  • CPU: generic
  • Submitted: 2004-07-12
  • Updated: 2006-01-31
  • Resolved: 2006-01-31
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
JDK 6
6Resolved
Related Reports
Duplicate :  
Description
Using Cinnabar 13 on Linux

- Enable the Low Contrast Theme
- From the Launch Menu, navigate to Applications->Internet

Notice that the icon for 'Java Webstart' does not change to match this accessible theme. There should be  icons in place for the following themes:
	
	Low Contrast
	High Contrast
	High Contrast Inverse
	
The same icon is also used for:
 Online Update (Applications->Utilities)
 Java (Preferences->Desktop Preferences)

Comments
EVALUATION 1. For Launch -> Internet -> Java Web Start - The icon path is hardcoded to /usr/java/jre/plugin/desktop/sun_java.png in the sun_webstart.desktop file. Changing the desktop file to contain only the icon name and not the full path fixes the issue. Following change has to be made in the desktop file. --- sun_webstart.desktop.org Tue Dec 13 18:54:01 2005 +++ sun_webstart.desktop Tue Dec 13 18:54:14 2005 @@ -32,7 +32,7 @@ Comment[zh_CN]=Java Web Start Comment[zh_HK]=Java Web Start Comment[zh_TW]=Java Web Start Exec=/usr/java/jre/javaws/javaws -Icon=/usr/java/jre/plugin/desktop/sun_java.png +Icon=sun_java.png Terminal=0 Type=Application Categories=Application;Network;X-Sun-Supported; 2. For Launch -> Preferencs -> Desktop Preferences -> Java - The icon path is hardcoded to /usr/java/jre/plugin/desktop/sun_java.png in sun_java.desktop file. Changing the desktop file to only contain the icon name and not the full path fixes the problem. Following change has to be made in the desktop file. --- sun_java.desktop.org Tue Dec 13 18:58:31 2005 +++ sun_java.desktop Tue Dec 13 18:58:40 2005 @@ -2,7 +2,7 @@ Name=Java Comment=Java Control Panel Exec=/usr/java/jre/bin/ControlPanel -Icon=/usr/java/jre/plugin/desktop/sun_java.png +Icon=sun_java.png Terminal=0 Type=Application Categories=Application;Settings;
13-12-2005