From ac1578b6c601058a57b8f7175a37900672436025 Mon Sep 17 00:00:00 2001 From: Tobias Bieniek Date: Fri, 8 Mar 2013 11:57:31 +0100 Subject: [PATCH] Text: Fixed DASH constant The DASH constant should obviously contain a dash instead of a newline character. I guess this was caused by a copy-paste error... --- src/shapes/Text.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shapes/Text.js b/src/shapes/Text.js index 22d246a4..60954bd8 100644 --- a/src/shapes/Text.js +++ b/src/shapes/Text.js @@ -6,7 +6,7 @@ CENTER = 'center', CHANGE_KINETIC = 'Change.kinetic', CONTEXT_2D = '2d', - DASH = '\n', + DASH = '-', EMPTY_STRING = '', LEFT = 'left', NEW_LINE = '\n',