Compare commits

...

2 Commits
1.0.3 ... 1.0.4

Author SHA1 Message Date
hstyi
e0e6a85a81 release: 1.0.4 2025-01-22 21:04:09 +08:00
hstyi
56ba107c87 fix: tab key not working 2025-01-22 20:58:10 +08:00
2 changed files with 2 additions and 2 deletions

View File

@@ -14,7 +14,7 @@ plugins {
group = "app.termora"
version = "1.0.3"
version = "1.0.4"
val os: OperatingSystem = DefaultNativePlatform.getCurrentOperatingSystem()
val arch: Architecture = DefaultNativePlatform.getCurrentArchitecture()

View File

@@ -52,7 +52,7 @@ class TerminalPanelKeyAdapter(
return
}
if (Character.isISOControl(e.keyChar) && isCtrlPressedOnly(e)) {
if (Character.isISOControl(e.keyChar)) {
terminal.getSelectionModel().clearSelection()
// 如果不为空表示已经发送过了,所以这里为空的时候再发送
if (encode.isEmpty()) {