Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
44655e77
Commit
44655e77
authored
Mar 28, 2001
by
Gerd Moellmann
Browse files
(x_draw_relief_rect): Extend left shadow to the
bottom; change bottom shadow accordingly.
parent
a02f1be0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
src/ChangeLog
src/ChangeLog
+3
-0
src/xterm.c
src/xterm.c
+2
-2
No files found.
src/ChangeLog
View file @
44655e77
2001-03-28 Gerd Moellmann <gerd@gnu.org>
* xterm.c (x_draw_relief_rect): Extend left shadow to the
bottom; change bottom shadow accordingly.
* xterm.c (expose_window_tree, expose_frame): Don't compute
intersections here.
(expose_window): Do it here instead.
...
...
src/xterm.c
View file @
44655e77
...
...
@@ -3738,7 +3738,7 @@ x_draw_relief_rect (f, left_x, top_y, right_x, bottom_y, width,
if (left_p)
for (i = 0; i < width; ++i)
XDrawLine (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
left_x + i, top_y + i, left_x + i, bottom_y - i);
left_x + i, top_y + i, left_x + i, bottom_y - i
+ 1
);
XSetClipMask (FRAME_X_DISPLAY (f), gc, None);
if (raised_p)
...
...
@@ -3750,7 +3750,7 @@ x_draw_relief_rect (f, left_x, top_y, right_x, bottom_y, width,
/* Bottom. */
for (i = 0; i < width; ++i)
XDrawLine (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
left_x + i * left_p, bottom_y - i,
left_x + i * left_p
+ 1
, bottom_y - i,
right_x + 1 - i * right_p, bottom_y - i);
/* Right. */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment