How had I not tested on Linux before
Build and Test j3270 / Build JAR & Run Tests (push) Successful in 45s
Build and Test j3270 / Build JAR & Run Tests (push) Successful in 45s
This commit is contained in:
@@ -190,6 +190,8 @@ public class TerminalPanel extends JPanel {
|
||||
ScreenBuffer sb = client.getScreenBuffer();
|
||||
sb.setCursorAddress(selectionStartRow * sb.getCols() + selectionStartCol);
|
||||
clearSelection();
|
||||
refreshScreen();
|
||||
return;
|
||||
}
|
||||
}
|
||||
repaint();
|
||||
@@ -723,6 +725,9 @@ public class TerminalPanel extends JPanel {
|
||||
}
|
||||
|
||||
private void refreshScreen() {
|
||||
if (client != null) {
|
||||
client.getScreenBuffer().updateDisplaySnapshot();
|
||||
}
|
||||
repaint();
|
||||
// Notify parent to update status bar too
|
||||
Container parent = getParent();
|
||||
|
||||
Reference in New Issue
Block a user