Skip to content

Commit

Permalink
- venkman only -
Browse files Browse the repository at this point in the history
bump version number again.
consider commands invoked via a hotkey as "interactive"
  • Loading branch information
rginda%netscape.com committed Aug 7, 2002
1 parent ce05ae5 commit ca8b315
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion extensions/venkman/resources/content/command-manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,8 @@ function cmgr_instkey (parentElem, command)

var key = document.createElement ("key");
key.setAttribute ("id", "key:" + command.name);
key.setAttribute ("oncommand", "dispatch('" + command.name + "');");
key.setAttribute ("oncommand", "dispatch('" + command.name +
"', {isInteractive: true});");
key.setAttribute ("modifiers", ary[1]);
if (ary[2].indexOf("VK_") == 0)
key.setAttribute ("keycode", ary[2]);
Expand Down
2 changes: 1 addition & 1 deletion extensions/venkman/resources/content/venkman-static.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
*
*/

const __vnk_version = "0.9.34";
const __vnk_version = "0.9.34+";
const __vnk_requiredLocale = "0.9.x";
var __vnk_versionSuffix = "";

Expand Down

0 comments on commit ca8b315

Please sign in to comment.