Drag text bug
Posted: Fri Jan 11, 2013 1:17 pm
When you drag text within a line and the destination is after the source, the text gets inserted at the incorrect point. In the following line if I select the ".value" and try to drag it to after the "beta"
alpha.value = beta + gamma;
I get
alpha = beta + gam.valuema;
instead of what I want which is
alpha = beta.value + gamma;
It looks as if you are not adjusting the destination column to handle the fact that the characters are effectively deleted.
alpha.value = beta + gamma;
I get
alpha = beta + gam.valuema;
instead of what I want which is
alpha = beta.value + gamma;
It looks as if you are not adjusting the destination column to handle the fact that the characters are effectively deleted.