> Another thing; it is a bit inconsistent now in that the default for
> created actions is 'next'. I suggest a quick-fix(?): Setting a
> "Depends on" pretty much by definition means that an action is
> "Future" and IMO should be changed into that by default (if it was
> tagged Next, but not SomedayMaybe or Waiting). As it is now, this has
> to be done manually.
> Possible?
Great idea! Here you go, put this in MgtdTagControls -->
MultiSelectTag. Find the following:
// if selectedItem is null this works to remove any
actOnTiddler.setTagFromGroup(tag,selectedItem);
Then add below:
// automatically make dependent actions future
if (tag == "Action") {
if (selectedItem == null)
actOnTiddler.setTagFromGroup("ActionStatus", "Next");
else
actOnTiddler.setTagFromGroup("ActionStatus", "Future");
}
Note that if an action is dependent and you remove that dependency, it
will become a Next action.
Works for me -- let me know what you think!
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "GTD
TiddlyWiki" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/GTD-TiddlyWiki?hl=en
-~----------~----~----~----~------~----~------~--~---