comment already decoded by the time it gets to the gui

pull/24/head
Zlatin Balevsky 2019-10-11 19:01:40 +01:00
parent c25d314e1c
commit b49dbc30c3
1 changed files with 1 additions and 3 deletions

View File

@ -33,13 +33,11 @@ class ShowCommentView {
dialog.setResizable(true)
String comment = DataUtil.readi18nString(Base64.decode(model.result.comment))
p = builder.panel {
borderLayout()
panel (constraints : BorderLayout.CENTER) {
scrollPane {
textArea(text : comment, rows : 20, columns : 100, editable : false)
textArea(text : model.result.comment, rows : 20, columns : 100, editable : false)
}
}
panel (constraints : BorderLayout.SOUTH) {