mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-18 19:07:34 +00:00
Fix display of depressed buttons
* src/xterm.c (x_draw_relief_rect): Fix typo.
This commit is contained in:
parent
773c5c00d2
commit
145727df29
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue