diff options
| author | Gerd Moellmann | 2001-01-04 20:32:20 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2001-01-04 20:32:20 +0000 |
| commit | 7948d50a76fe8f96d6783e2efdf9f317c7a603f2 (patch) | |
| tree | 7a5f46aa3b4e4543658eadfdc08a0bb5510a6480 | |
| parent | 8416e94a2d306d5200864da7fd2da645ac325fb4 (diff) | |
| download | emacs-7948d50a76fe8f96d6783e2efdf9f317c7a603f2.tar.gz emacs-7948d50a76fe8f96d6783e2efdf9f317c7a603f2.zip | |
(clear_mouse_face): Don't return if tip_frame is
non-nil.
| -rw-r--r-- | src/xterm.c | 3 |
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 | |||
| 7290 | clear_mouse_face (dpyinfo) | 7290 | clear_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); |