|
From: Markus B. <mba...@us...> - 2005-10-26 21:56:06
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9905/src/org/rubypeople/rdt/internal/ui Modified Files: RubyPluginImages.java Log Message: Search result page allows grouping by file and package (scope) Index: RubyPluginImages.java =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/RubyPluginImages.java,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** RubyPluginImages.java 1 Oct 2005 23:10:44 -0000 1.11 --- RubyPluginImages.java 26 Oct 2005 21:55:50 -0000 1.12 *************** *** 124,132 **** } catch (MalformedURLException e) {} ! try { ! ImageDescriptor id = ImageDescriptor.createFromURL(makeIconFileURL("c" + type, relPath)); ! if (id != null) ! action.setHoverImageDescriptor(id); ! } catch (MalformedURLException e) {} action.setImageDescriptor(create("e" + type, relPath)); --- 124,130 ---- } catch (MalformedURLException e) {} ! // we don't use hover images. If we set it nonetheless it would be preferred to the "normal" image descriptor ! // see ActionContributionItem.updateImages ! // ImageDescriptor.createFromURL(makeIconFileURL("c" + type, relPath)); action.setImageDescriptor(create("e" + type, relPath)); |