Mercurial > emacs
changeset 75371:7267980a2f42
* dispnew.c (update_text_area): Revert 2006-09-17 change.
Always redraw non-mode-line rows with mouse-face.
author | Chong Yidong <cyd@stupidchicken.com> |
---|---|
date | Sun, 21 Jan 2007 23:30:02 +0000 |
parents | a28e0446640f |
children | a1962c941648 |
files | src/dispnew.c |
diffstat | 1 files changed, 6 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/src/dispnew.c Sun Jan 21 23:29:20 2007 +0000 +++ b/src/dispnew.c Sun Jan 21 23:30:02 2007 +0000 @@ -4391,12 +4391,12 @@ || desired_row->phys_height != current_row->phys_height || desired_row->visible_height != current_row->visible_height || current_row->overlapped_p -#if 0 - /* This causes excessive flickering when mouse is moved across - the mode line. Luckily everything seems to work just fine - without doing this. KFS 2006-09-17. */ - || current_row->mouse_face_p -#endif + /* This next line is necessary for correctly redrawing + mouse-face areas after scrolling and other operations. + However, it causes excessive flickering when mouse is moved + across the mode line. Luckily, turning it off for the mode + line doesn't seem to hurt anything. -- cyd. */ + || (current_row->mouse_face_p && !current_row->mode_line_p) || current_row->x != desired_row->x) { rif->cursor_to (vpos, 0, desired_row->y, desired_row->x);