Working disconnect button in Console fix #4862
This commit is contained in:
parent
a6f527da62
commit
aadf3cf123
|
@ -30,6 +30,7 @@ Release template (copy/paste this for new release):
|
|||
|
||||
### Added
|
||||
- Latest jSerialComm 2.10.3
|
||||
- Working disconnect button in Console #4862
|
||||
|
||||
## July 2023 Release "Day 518"
|
||||
|
||||
|
|
|
@ -32,9 +32,9 @@ public class ConnectionTab {
|
|||
KeyStroke disconnectKeyStroke = KeyStroke.getKeyStroke(KeyEvent.VK_D, InputEvent.CTRL_MASK);
|
||||
KeyStroke connectKeyStroke = KeyStroke.getKeyStroke(KeyEvent.VK_R, InputEvent.CTRL_MASK);
|
||||
|
||||
vertical.add(new JLabel("Ctrl+C connect"));
|
||||
vertical.add(new JLabel("Ctrl+R connect"));
|
||||
vertical.add(connect);
|
||||
vertical.add(new JLabel("Ctrl+R disconnect"));
|
||||
vertical.add(new JLabel("Ctrl+D disconnect"));
|
||||
vertical.add(disconnect);
|
||||
|
||||
ConnectionStatusLogic.INSTANCE.addListener(isConnected -> {
|
||||
|
|
Loading…
Reference in New Issue