mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-02-22 00:55:46 +01:00
Don't push pass through mode multiple times. Closes issue #641.
This commit is contained in:
@@ -47,7 +47,7 @@ var Group = Class("Group", {
|
||||
|
||||
makeArgs: function makeArgs(doc, context, args) {
|
||||
let res = update({ doc: doc, context: context }, args);
|
||||
return update(this.argsExtra(res), args);
|
||||
return update(res, this.argsExtra(res), args);
|
||||
},
|
||||
|
||||
get toStringParams() [this.name],
|
||||
@@ -194,7 +194,7 @@ var Contexts = Module("contexts", {
|
||||
let contextPath = file.path;
|
||||
let self = Set.has(plugins, contextPath) && plugins.contexts[contextPath];
|
||||
|
||||
if (!self && isPlugin)
|
||||
if (!self && isPlugin && false)
|
||||
self = Set.has(plugins, id) && plugins[id];
|
||||
|
||||
if (self) {
|
||||
|
||||
Reference in New Issue
Block a user