How had I not tested on Linux before
Build and Test j3270 / Build JAR & Run Tests (push) Successful in 45s

This commit is contained in:
2026-08-21 21:00:10 -04:00
parent 09600260b5
commit b57d8f960d
10 changed files with 125 additions and 6 deletions
@@ -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();