Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.

Bug 466441

Summary: [Quickfix] Remove tooltips from quickfix commands
Product: [ECD] Orion Reporter: Curtis Windatt <curtis.windatt.public>
Component: JS ToolsAssignee: Curtis Windatt <curtis.windatt.public>
Status: RESOLVED FIXED QA Contact:
Severity: normal    
Priority: P3    
Version: 8.0   
Target Milestone: 9.0   
Hardware: PC   
OS: Windows 7   
Whiteboard:

Description Curtis Windatt CLA 2015-05-05 10:16:05 EDT
If you have a tooltip description for a quickfix command it shows up as a second popup over the editor tooltip.  We should remove these descriptions as the quickfixes already explain what they do.
Comment 1 Curtis Windatt CLA 2015-05-05 13:06:36 EDT
We can also simply remove the tooltips from any quickfix command before we render it.  This would of course prevent any other third party from showing having tooltips (though if they were in some way using the same command in multiple places).
Comment 2 Curtis Windatt CLA 2015-05-05 13:49:31 EDT
http://git.eclipse.org/c/orion/org.eclipse.orion.client.git/commit/?id=28eff5ebbbd415749b8df8a63152ae1ed0de9358
Fixed in master

I decided against removing all tooltips at render time.  To change it, in commandRegistry.js::_render() where we render atomic commands with a renderType of 'quickfix', set command.tooltip to null before calling Commands.createCommandItem.  With no tooltip value set the tooltip on hover event is not added.