jamshark70 / ddwChucklib-livecode

A live-coding interface for chucklib objects
25 stars 0 forks source link

presumably wrong autogeneration of text #8

Open clfest opened 6 years ago

clfest commented 6 years ago

I am running 3.9.0 compiled from git on Ubuntu Studio When I enter:

\loadAllCl.eval TempoClock.tempo = 124/60; /make(pbsVC:pbs/melBP:bs(octave:3));

// and then enter this by selecting it and then pressing shift-enter 'evalute selection or line' /bars.(\bs, 2, \a);

// I get this (in my original document): /bars.(\bs, 2, \a);

/bs.a0 = ""; /bs.a1 = "";

// but when I enter it by not selecting it but having the cursor all the way left on the line and pressing // shift-enter see above), I get this. This looks like a bug / /bs.a0 = ""; /bs.a1 = ""; bars.(\bs, 2, \a);

jamshark70 commented 6 years ago

Thanks. If there's a newline (return) at the end of the line, it works. If the /bars.(...) call is the last line, it fails.

It's a cursor position problem, not a text-generation problem.

I'll work on it sometime, but it's not high priority.