Commit c9bb2b114f99f8c4551cf83e6df10886821a579a
1 parent
3cbfdef2
Exists in
master
and in
1 other branch
Visual adjustments on OIA.
Showing
1 changed file
with
6 additions
and
1 deletions
Show diff stats
src/terminal/drawing/oia.c
... | ... | @@ -704,9 +704,14 @@ void v3270_draw_oia(v3270 *terminal, cairo_t *cr, int row, int cols) |
704 | 704 | lCol += (3 + terminal->oia.rect[V3270_OIA_UNDERA].width); |
705 | 705 | |
706 | 706 | // Connection indicator |
707 | + //terminal->oia.rect[V3270_OIA_CONNECTION].x = lCol; | |
708 | + //terminal->oia.rect[V3270_OIA_CONNECTION].y = row; | |
709 | + //terminal->oia.rect[V3270_OIA_CONNECTION].width = terminal->font.width; | |
710 | + //terminal->oia.rect[V3270_OIA_CONNECTION].height = terminal->font.spacing.value; | |
711 | + | |
707 | 712 | terminal->oia.rect[V3270_OIA_CONNECTION].x = lCol; |
708 | 713 | terminal->oia.rect[V3270_OIA_CONNECTION].y = row; |
709 | - terminal->oia.rect[V3270_OIA_CONNECTION].width = terminal->font.width; | |
714 | + terminal->oia.rect[V3270_OIA_CONNECTION].width = terminal->font.width+2; | |
710 | 715 | terminal->oia.rect[V3270_OIA_CONNECTION].height = terminal->font.spacing.value; |
711 | 716 | |
712 | 717 | v3270_draw_connection(cr,terminal->host,&terminal->font,terminal->color,terminal->oia.rect+V3270_OIA_CONNECTION); | ... | ... |