taskpaperscripts icon indicating copy to clipboard operation
taskpaperscripts copied to clipboard

Improper indention of tasks

Open underscorephil opened this issue 10 years ago • 2 comments

In some cases tasks are shown as 2nd level items of a UL in the Day One log. Need to hunt down the situations which cause this and find a fix.

underscorephil avatar Jan 24 '15 20:01 underscorephil

I was able to reproduce this when I marked tasks @done from three different sub-projects of the same main project. All but the first completed task would appear as 2nd level items of a UL in the Day One entry.

work screenshot_08_06_15_16_48

Solution?

Not sure if this would work as global fix, but removing the five spaces between the quotes on the line: set task_notes to task_notes & return & " " & (text line of notes in _entry) as rich text seemed to fix this particular occurrence of the problem. Here is the new output:

screenshot_08_06_15_16_45

Changed: set task_notes to task_notes & return & " " & (text line of notes in _entry) as rich text to set task_notes to task_notes & return & "" & (text line of notes in _entry) as rich text

ghost avatar Jun 08 '15 14:06 ghost

@hendryolson apologies! I totally missed this. Thanks so much for running this down. Ill test and update.

underscorephil avatar Sep 24 '15 12:09 underscorephil