diff options
| author | Po Lu | 2022-05-10 17:38:53 +0800 |
|---|---|---|
| committer | Po Lu | 2022-05-10 17:38:53 +0800 |
| commit | 145727df29d2e067b062cb44548dd97b076567fa (patch) | |
| tree | df0154c074d7aa27256e159b70d7c2ecae6c651b /src | |
| parent | 773c5c00d23ccb78f491b30e67f77ebe5d38be1a (diff) | |
| download | emacs-145727df29d2e067b062cb44548dd97b076567fa.tar.gz emacs-145727df29d2e067b062cb44548dd97b076567fa.zip | |
Fix display of depressed buttons
* src/xterm.c (x_draw_relief_rect): Fix typo.
Diffstat (limited to 'src')
| -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, | |||
| 7588 | if (top_p && left_p && bot_p && right_p | 7588 | if (top_p && left_p && bot_p && right_p |
| 7589 | && hwidth > 1 && vwidth > 1) | 7589 | && hwidth > 1 && vwidth > 1) |
| 7590 | x_draw_rectangle (f, black_gc, left_x, top_y, | 7590 | x_draw_rectangle (f, black_gc, left_x, top_y, |
| 7591 | right_x - left_x, top_y - bottom_y); | 7591 | right_x - left_x, bottom_y - top_y); |
| 7592 | else | 7592 | else |
| 7593 | { | 7593 | { |
| 7594 | if (top_p && hwidth > 1) | 7594 | if (top_p && hwidth > 1) |