get rid of Say button in chat

pull/53/head
Zlatin Balevsky 2020-10-01 14:53:12 +01:00
parent 2bfe5946c3
commit 734beab376
No known key found for this signature in database
GPG Key ID: A72832072D525E41
2 changed files with 0 additions and 3 deletions

View File

@ -460,7 +460,6 @@ CONNECTION_STATUS=Connection Status
## Chat room tab
SAY_SOMETHING_HERE=Write something here
SAY=Say
START_PRIVATE_CHAT=Start Private Chat
## Chat monitor

View File

@ -64,7 +64,6 @@ class ChatRoomView {
borderLayout()
label(text : trans("SAY_SOMETHING_HERE") + ": ", constraints : BorderLayout.WEST)
sayField = textField(enabled : bind {parentModel.sayActionEnabled}, actionPerformed : {controller.say()}, constraints : BorderLayout.CENTER)
button(enabled : bind {parentModel.sayActionEnabled},text : trans("SAY"), constraints : BorderLayout.EAST, sayAction)
}
}
} else {
@ -96,7 +95,6 @@ class ChatRoomView {
borderLayout()
label(text : trans("SAY_SOMETHING_HERE") + ": ", constraints : BorderLayout.WEST)
sayField = textField(enabled : bind {parentModel.sayActionEnabled}, actionPerformed : {controller.say()}, constraints : BorderLayout.CENTER)
button(enabled : bind {parentModel.sayActionEnabled}, text : trans("SAY"), constraints : BorderLayout.EAST, sayAction)
}
}