Fix crash after click help button in Walker animation dialog
The setValue() fuction expect 'path' and 'value' or only 'value', so in these cases, the content was treated as a path and caused "Illegal character in leaf of property path" error
This commit is contained in:
parent
1fc323ea57
commit
e64e6288bd
1 changed files with 2 additions and 2 deletions
|
@ -391,7 +391,7 @@ var sequence = {
|
|||
"The checkbox at the bottom enables the triggering of animations, " ~
|
||||
"and is automatically turned off when editing a sequence.\n\n" ~
|
||||
"To close this dialog box, press [Esc] or click on the button in the " ~
|
||||
"upper right corner.", "STRING");
|
||||
"upper right corner.");
|
||||
w = walker_dialog3.addChild("textbox");
|
||||
w.set("halign", "fill");
|
||||
w.set("pref-width", 350);
|
||||
|
@ -1945,7 +1945,7 @@ var animate = {
|
|||
"change the trigger setting, save it, exit the dialog, and re-enable " ~
|
||||
"the Trigger checkbox on the other (sequence) dialog.\n\n" ~
|
||||
"To test your animation before enabling the trigger, just click in the " ~
|
||||
"checkbox at the bottom, to enable this current animation.", "STRING");
|
||||
"checkbox at the bottom, to enable this current animation.");
|
||||
w = walker_dialog4.addChild("textbox");
|
||||
w.set("halign", "fill");
|
||||
w.set("pref-width", 380);
|
||||
|
|
Loading…
Reference in a new issue