From d982412a34cf4e672da6ee89edf2728a646f5f6b Mon Sep 17 00:00:00 2001 From: Robin Haberkorn Date: Wed, 3 Oct 2012 15:34:24 +0200 Subject: fixed OSCGraphicsText --- chuck/OSCGraphicsText.ck | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/chuck/OSCGraphicsText.ck b/chuck/OSCGraphicsText.ck index 59f12ea..58377be 100644 --- a/chuck/OSCGraphicsText.ck +++ b/chuck/OSCGraphicsText.ck @@ -54,11 +54,11 @@ public class OSCGraphicsText extends OSCGraphicsLayer { string style; if (flags & STYLE_BOLD) - style +=> "b"; + "b" +=> style; if (flags & STYLE_ITALIC) - style +=> "i"; + "i" +=> style; if (flags & STYLE_UNDERLINE) - style +=> "u"; + "u" +=> style; osc_send.startMsg("/layer/"+name+"/style", "s"); style => osc_send.addString; -- cgit v1.2.3