From b49dbc30c3a77ccdb72d43a50602688d58cf2c51 Mon Sep 17 00:00:00 2001 From: Zlatin Balevsky Date: Fri, 11 Oct 2019 19:01:40 +0100 Subject: [PATCH] comment already decoded by the time it gets to the gui --- gui/griffon-app/views/com/muwire/gui/ShowCommentView.groovy | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/gui/griffon-app/views/com/muwire/gui/ShowCommentView.groovy b/gui/griffon-app/views/com/muwire/gui/ShowCommentView.groovy index b211d112..4bca9dd0 100644 --- a/gui/griffon-app/views/com/muwire/gui/ShowCommentView.groovy +++ b/gui/griffon-app/views/com/muwire/gui/ShowCommentView.groovy @@ -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) {