diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/xdisp.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/xdisp.c b/src/xdisp.c index 038ce5b03b9..075e05b0e13 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -22358,7 +22358,10 @@ note_mouse_highlight (f, x, y) | |||
| 22358 | } | 22358 | } |
| 22359 | 22359 | ||
| 22360 | if (part == ON_VERTICAL_BORDER) | 22360 | if (part == ON_VERTICAL_BORDER) |
| 22361 | cursor = FRAME_X_OUTPUT (f)->horizontal_drag_cursor; | 22361 | { |
| 22362 | cursor = FRAME_X_OUTPUT (f)->horizontal_drag_cursor; | ||
| 22363 | help_echo_string = make_string ("drag-mouse-1: resize", 20); | ||
| 22364 | } | ||
| 22362 | else if (part == ON_LEFT_FRINGE || part == ON_RIGHT_FRINGE | 22365 | else if (part == ON_LEFT_FRINGE || part == ON_RIGHT_FRINGE |
| 22363 | || part == ON_SCROLL_BAR) | 22366 | || part == ON_SCROLL_BAR) |
| 22364 | cursor = FRAME_X_OUTPUT (f)->nontext_cursor; | 22367 | cursor = FRAME_X_OUTPUT (f)->nontext_cursor; |