Commit c9bb2b114f99f8c4551cf83e6df10886821a579a

Authored by Perry Werneck
1 parent 3cbfdef2
Exists in master and in 1 other branch develop

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,9 +704,14 @@ void v3270_draw_oia(v3270 *terminal, cairo_t *cr, int row, int cols)
704 lCol += (3 + terminal->oia.rect[V3270_OIA_UNDERA].width); 704 lCol += (3 + terminal->oia.rect[V3270_OIA_UNDERA].width);
705 705
706 // Connection indicator 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 terminal->oia.rect[V3270_OIA_CONNECTION].x = lCol; 712 terminal->oia.rect[V3270_OIA_CONNECTION].x = lCol;
708 terminal->oia.rect[V3270_OIA_CONNECTION].y = row; 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 terminal->oia.rect[V3270_OIA_CONNECTION].height = terminal->font.spacing.value; 715 terminal->oia.rect[V3270_OIA_CONNECTION].height = terminal->font.spacing.value;
711 716
712 v3270_draw_connection(cr,terminal->host,&terminal->font,terminal->color,terminal->oia.rect+V3270_OIA_CONNECTION); 717 v3270_draw_connection(cr,terminal->host,&terminal->font,terminal->color,terminal->oia.rect+V3270_OIA_CONNECTION);