mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
box-drawing: swap amount of shade for LIGHT and DARK shades
The DARK shade is the one most dense, and thus the one that looks brightest.
This commit is contained in:
parent
b280928084
commit
5dd8a70905
1 changed files with 2 additions and 2 deletions
|
|
@ -1697,7 +1697,7 @@ draw_light_shade(struct buf *buf)
|
|||
}
|
||||
}
|
||||
} else
|
||||
draw_pixman_shade(buf, 0x8000);
|
||||
draw_pixman_shade(buf, 0x2000);
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
@ -1727,7 +1727,7 @@ draw_dark_shade(struct buf *buf)
|
|||
}
|
||||
}
|
||||
} else
|
||||
draw_pixman_shade(buf, 0x2000);
|
||||
draw_pixman_shade(buf, 0x8000);
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue