Oops, sigh, I didn't test my patch and I got burned. Here's a working
patch.
Index: Lingo.js
===================================================================
--- Lingo.js (revision 10958)
+++ Lingo.js (working copy)
@@ -174,7 +174,8 @@
merge(config.macros.closeAll,{
label: "close all",
- prompt: "Close all displayed tiddlers (except any that are being
edited)"});
+ prompt: "Close all displayed tiddlers (except any that are being
edited)",
+ accessKey: "Y"});
merge(config.macros.permaview,{
label: "permaview",
Index: Macros.js
===================================================================
--- Macros.js (revision 10958)
+++ Macros.js (working copy)
@@ -193,7 +193,7 @@
config.macros.closeAll.handler = function(place)
{
- createTiddlyButton(place,this.label,this.prompt,this.onClick);
+ createTiddlyButton
(place,this.label,this.prompt,this.onClick,null,null,this.accessKey);
};
config.macros.closeAll.onClick = function(e)
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"TiddlyWikiDev" 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/tiddlywikidev?hl=en
-~----------~----~----~----~------~----~------~--~---