diff options
| author | Gerd Moellmann <gerd@gnu.org> | 1999-08-19 13:56:14 +0000 | 
|---|---|---|
| committer | Gerd Moellmann <gerd@gnu.org> | 1999-08-19 13:56:14 +0000 | 
| commit | e90dbbd17e7e5cffb43fe1cadf0dc0a21e3c2a31 (patch) | |
| tree | cbad2c188977b7132f515181c7e1f6cef3059590 /src/xterm.c | |
| parent | 84394d4482607660033aecf59804fe19ac927957 (diff) | |
| download | emacs-e90dbbd17e7e5cffb43fe1cadf0dc0a21e3c2a31.tar.gz | |
(XTset_vertical_scroll_bar): Fix previous change.  Clear
under scroll bar with width FRAME_SCROLL_BAR_COLS.
Diffstat (limited to 'src/xterm.c')
| -rw-r--r-- | src/xterm.c | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/src/xterm.c b/src/xterm.c index 57f7e1b8005..ac945e144b5 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -7929,7 +7929,8 @@ XTset_vertical_scroll_bar (w, portion, whole, position)  	 for them on the frame, we have to clear "under" them.  */        XClearArea (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),  		  pixel_left, pixel_top, -		  pixel_width + 1, pixel_height, False); +		  FRAME_SCROLL_BAR_COLS (f) * CANON_X_UNIT (f), +		  pixel_height, False);        /* Move/size the scroll bar widget.  */        if (mask)  | 
