[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/src/w32menu.c
From: |
Jason Rumney |
Subject: |
[Emacs-diffs] Changes to emacs/src/w32menu.c |
Date: |
Mon, 25 Jul 2005 18:16:11 -0400 |
Index: emacs/src/w32menu.c
diff -c emacs/src/w32menu.c:1.74 emacs/src/w32menu.c:1.75
*** emacs/src/w32menu.c:1.74 Mon Jul 4 16:06:37 2005
--- emacs/src/w32menu.c Mon Jul 25 22:16:11 2005
***************
*** 2418,2425 ****
struct frame *f = x_window_to_frame (&one_w32_display_info, owner);
Lisp_Object frame, help;
! /* No help echo on owner-draw menu items. */
! if (flags & MF_OWNERDRAW || flags & MF_POPUP)
help = Qnil;
else
{
--- 2418,2428 ----
struct frame *f = x_window_to_frame (&one_w32_display_info, owner);
Lisp_Object frame, help;
! /* No help echo on owner-draw menu items, or when the keyboard is used
! to navigate the menus, since tooltips are distracting if they pop
! up elsewhere. */
! if (flags & MF_OWNERDRAW || flags & MF_POPUP
! || !(flags & MF_MOUSESELECT))
help = Qnil;
else
{