From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Ralf Angeli Newsgroups: gmane.emacs.help Subject: Re: tool bar: How to get _no_ tooltip? Date: Sat, 21 Jan 2006 18:04:32 +0100 Organization: nil Message-ID: <43d26996$0$15789$14726298@news.sunsite.dk> References: Reply-To: angeli@iwi.uni-sb.de NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1137870204 31875 80.91.229.2 (21 Jan 2006 19:03:24 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 21 Jan 2006 19:03:24 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sat Jan 21 20:03:24 2006 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1F0O19-0007Am-PC for geh-help-gnu-emacs@m.gmane.org; Sat, 21 Jan 2006 20:03:19 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1F0Nzp-0000ho-Pa for geh-help-gnu-emacs@m.gmane.org; Sat, 21 Jan 2006 14:01:57 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!news.tele.dk!news.tele.dk!small.news.tele.dk!uninett.no!news.net.uni-c.dk!dotsrc.org!news.dotsrc.org!not-for-mail Original-Newsgroups: gnu.emacs.help Mail-Copies-To: nobody Cancel-Lock: sha1:wkuyFv/J+zT5QvNyUqTJSwr5Yy0= Original-Lines: 23 Original-NNTP-Posting-Host: 212.144.207.127 Original-X-Trace: news.sunsite.dk DXC=oH86jTCc>feHZJdbckJ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:32771 Archived-At: * Reiner Steib (2006-01-21) writes: > M-: (tool-bar-local-item "exit" nil nil tool-bar-map) RET > adds a new icon to the tool bar. When moving the mouse over the icon, > a tooltip with the text "nil" is displayed. That looks like a bug. > With `M-: (tool-bar-local-item "exit" nil nil tool-bar-map :help "") > RET', I get very small tooltip with no text. > > How to disable the tooltip completely? (The icon I want to use is a > separator icon without any associated command.) The separator should not be clickable anyway, so how about the following? (That's how Miguel did it in AUCTeX.) (tool-bar-local-item "exit" nil nil tool-bar-map :enable nil) Disadvantage is that the image will become shaded. -- Ralf