https://bugs.documentfoundation.org/show_bug.cgi?id=152860
Rafael Lima <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] Ever confirmed|0 |1 Status|UNCONFIRMED |NEW --- Comment #2 from Rafael Lima <[email protected]> --- We can simply add a new "TooltipLabel" property to the command. Since it only has a "Label" property, the label is being used as the tooltip. The fix would look like this: <node oor:name=".uno:SearchLabel" oor:op="replace"> <prop oor:name="Label" oor:type="xs:string"> <value xml:lang="en-US">[placeholder for message]</value> </prop> <prop oor:name="TooltipLabel" oor:type="xs:string"> <value xml:lang="en-US">Search results</value> </prop> </node> Not that the "[placeholder for message]" is replaced as the string content of the command and the newly added "TooltipLabel" is then used as tooltip. -- You are receiving this mail because: You are the assignee for the bug.
