diff options
author | Po Lu <luangruo@yahoo.com> | 2022-05-10 17:38:53 +0800 |
---|---|---|
committer | Po Lu <luangruo@yahoo.com> | 2022-05-10 17:38:53 +0800 |
commit | 145727df29d2e067b062cb44548dd97b076567fa (patch) | |
tree | df0154c074d7aa27256e159b70d7c2ecae6c651b | |
parent | 773c5c00d23ccb78f491b30e67f77ebe5d38be1a (diff) | |
download | emacs-145727df29d2e067b062cb44548dd97b076567fa.tar.gz emacs-145727df29d2e067b062cb44548dd97b076567fa.tar.bz2 emacs-145727df29d2e067b062cb44548dd97b076567fa.zip |
Fix display of depressed buttons
* src/xterm.c (x_draw_relief_rect): Fix typo.
-rw-r--r-- | src/xterm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xterm.c b/src/xterm.c index 3e5cd45b431..40c80eb1f70 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -7588,7 +7588,7 @@ x_draw_relief_rect (struct frame *f, int left_x, int top_y, int right_x, if (top_p && left_p && bot_p && right_p && hwidth > 1 && vwidth > 1) x_draw_rectangle (f, black_gc, left_x, top_y, - right_x - left_x, top_y - bottom_y); + right_x - left_x, bottom_y - top_y); else { if (top_p && hwidth > 1) |