From cefd91de06c323f9ab1446f0d5f66e088f8fc476 Mon Sep 17 00:00:00 2001 From: Offray Luna Date: Sat, 26 Sep 2015 16:45:08 +0000 Subject: [PATCH] Tags: Temporary fix to UTF-8 tagged nodes. --- repository/Grafoscopio/GrafoscopioBrowser.class.st | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/repository/Grafoscopio/GrafoscopioBrowser.class.st b/repository/Grafoscopio/GrafoscopioBrowser.class.st index 4957085..2e6589c 100644 --- a/repository/Grafoscopio/GrafoscopioBrowser.class.st +++ b/repository/Grafoscopio/GrafoscopioBrowser.class.st @@ -568,7 +568,7 @@ GrafoscopioBrowser >> bodyForCodeIn: constructor for: aNode [ | innerBrowser | - aNode tags = 'código' + aNode tags = 'código' | aNode tags = 'code' ifFalse: [^self]. innerBrowser := GTPlayground new. @@ -821,7 +821,7 @@ GrafoscopioBrowser >> configureInitialTags [ tagsAvailable := OrderedCollection new. tagsAvailable - add: 'código'; + add: 'code'; add: 'ejercicio'; add: 'invisible'; add: 'obra';