aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann2001-01-04 20:32:20 +0000
committerGerd Moellmann2001-01-04 20:32:20 +0000
commit7948d50a76fe8f96d6783e2efdf9f317c7a603f2 (patch)
tree7a5f46aa3b4e4543658eadfdc08a0bb5510a6480 /src
parent8416e94a2d306d5200864da7fd2da645ac325fb4 (diff)
downloademacs-7948d50a76fe8f96d6783e2efdf9f317c7a603f2.tar.gz
emacs-7948d50a76fe8f96d6783e2efdf9f317c7a603f2.zip
(clear_mouse_face): Don't return if tip_frame is
non-nil.
Diffstat (limited to 'src')
-rw-r--r--src/xterm.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/xterm.c b/src/xterm.c
index fc86cd979c0..1581b23c981 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -7290,8 +7290,11 @@ void
7290clear_mouse_face (dpyinfo) 7290clear_mouse_face (dpyinfo)
7291 struct x_display_info *dpyinfo; 7291 struct x_display_info *dpyinfo;
7292{ 7292{
7293#if 0 /* This prevents redrawing tool bar items when changing
7294 from one to another, so don't do it. */
7293 if (!NILP (tip_frame)) 7295 if (!NILP (tip_frame))
7294 return; 7296 return;
7297#endif
7295 7298
7296 if (! NILP (dpyinfo->mouse_face_window)) 7299 if (! NILP (dpyinfo->mouse_face_window))
7297 show_mouse_face (dpyinfo, DRAW_NORMAL_TEXT); 7300 show_mouse_face (dpyinfo, DRAW_NORMAL_TEXT);