Skip to content

Commit

Permalink
Fix for plain characters overwriting previous field definitions. (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
coxlinton authored Oct 5, 2020
1 parent 3fbfa20 commit bf99243
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -590,6 +590,7 @@ private synchronized void write()

default:
Term3270Char currChar = chars[bufferAddr++];
currChar.clear();
currChar.setChar((char) ebc2asc[dataIn[counter]]);

//System.out.print(currChar.getChar());
Expand Down Expand Up @@ -1393,7 +1394,7 @@ private synchronized void repeatToAddress()
while (bufferAddr != address)
{
Term3270Char currChar = chars[bufferAddr];
//currChar.clear();
currChar.clear();
//currChar.setHighlighting(highlight);
//currChar.setForeground(foreground);
//currChar.setBackground(background);
Expand Down

0 comments on commit bf99243

Please sign in to comment.