@Wolfgang - Should be fixed in the next version.
see: https://github.com/TiddlyWiki/tiddlywiki/issues/72#issuecomment-2990796
In the meantime you can create a zzConfig tiddler tagged systemConfig
and add the following code. It will create a hardCoreTweak, that
should fix it.
var myVersion=version.major+version.minor/10+version.revision/100;
if ( (myVersion == 2.65) || (myVersion == 2.64)) {
function commitSystemSettings(storeWasDirty)
{
if(systemSettingSave) {
window.clearTimeout(systemSettingSave);
}
systemSettingSave = window.setTimeout(function() {
var tiddler = store.getTiddler('SystemSettings');
autoSaveChanges(null,[tiddler]);
}, 1000);
}
}
I did test it with TW V2.6.5
-m
--
You received this message because you are subscribed to the Google Groups
"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/tiddlywiki?hl=en.