mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-19 05:33:44 -04:00
render: limit the unfocused block cursor’s outline width
Ensure the outline width doesn’t exceed the cell width/height.
This commit is contained in:
parent
0a656d75d4
commit
8ac2bcff67
1 changed files with 5 additions and 4 deletions
9
render.c
9
render.c
|
|
@ -318,14 +318,15 @@ draw_unfocused_block(const struct terminal *term, pixman_image_t *pix,
|
||||||
const pixman_color_t *color, int x, int y, int cell_cols)
|
const pixman_color_t *color, int x, int y, int cell_cols)
|
||||||
{
|
{
|
||||||
const int scale = term->scale;
|
const int scale = term->scale;
|
||||||
|
const int width = min(min(scale, term->cell_width), term->cell_height);
|
||||||
|
|
||||||
pixman_image_fill_rectangles(
|
pixman_image_fill_rectangles(
|
||||||
PIXMAN_OP_SRC, pix, color, 4,
|
PIXMAN_OP_SRC, pix, color, 4,
|
||||||
(pixman_rectangle16_t []){
|
(pixman_rectangle16_t []){
|
||||||
{x, y, cell_cols * term->cell_width, scale}, /* top */
|
{x, y, cell_cols * term->cell_width, width}, /* top */
|
||||||
{x, y, scale, term->cell_height}, /* left */
|
{x, y, width, term->cell_height}, /* left */
|
||||||
{x + cell_cols * term->cell_width - scale, y, scale, term->cell_height}, /* right */
|
{x + cell_cols * term->cell_width - width, y, width, term->cell_height}, /* right */
|
||||||
{x, y + term->cell_height - scale, cell_cols * term->cell_width, scale}, /* bottom */
|
{x, y + term->cell_height - width, cell_cols * term->cell_width, width}, /* bottom */
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue