The error with the edit title and recent tab come from the same thing. The 
locked field of $:/state/FastNewTiddler was set. This meant that changing 
the title field changed the temporary title state, not the state of any 
actual tiddler, and putting text into the text editor was trying to edit a 
tiddler with no title. To fix this problem we may have to put some action 
widgets that clear the locked field in a few places. I think that one in 
the page toolbar that opens the fast new tiddler interface may be enough, 
but putting one on the close button of the fast new tiddler popup may be a 
good idea also.

One other bug that should be added to the todo list is if you have the 
tiddler you are editing visible and you change the name than the visible 
tiddler gets deleted but the new one doesn't get opened.

To prevent the delete button from deleting the FNT tiddler when no title is 
entered replace the delete button with this:

<$reveal type='nomatch' state={{$:/temp/FastNewTiddler!!newtitle}} text=''>
  <$button class="tc-btn-invisible" message='tm-delete-tiddler' 
param={{$:/temp/FastNewTiddler!!newtitle}}>
    {{$:/core/images/delete-button}}
  </$button>
</$reveal>
<$reveal type='match' state={{$:/temp/FastNewTiddler!!newtitle}} text=''>
  <$button class="tc-btn-invisible">
    {{$:/core/images/delete-button}}
  </$button>
</$reveal>

that will make the delete button do nothing unless there is actually 
something to delete.

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/c9ea1991-130f-4330-8efe-4f1ec884d6f1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to