We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f87624f commit b7314b8Copy full SHA for b7314b8
modules/ILL/ILL.moon
@@ -1,4 +1,4 @@
1
-module_version = "1.5.7"
+module_version = "1.5.8"
2
3
haveDepCtrl, DependencyControl = pcall require, "l0.DependencyControl"
4
modules/ILL/ILL/Ass/Ass.moon
@@ -176,11 +176,10 @@ class Ass
176
177
-- sets the final value of the text
178
setText: (l) ->
179
- if not l.isShape and Util.checkClass l.text, "Text"
180
- copyInstance = Table.copy l.text
181
- l.text = l.text\__tostring!
182
- return copyInstance
183
- elseif l.isShape and Util.checkClass l.text, "Text"
+ if Util.checkClass l.text, "Text"
+ if l.isShape
+ l.text = l.tags\__tostring! .. l.shape
+ return
184
copyInstance = Table.copy l.text
185
l.text = l.text\__tostring!
186
return copyInstance
0 commit comments