mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-01-09 00:34:12 +01:00
Fix bug.
This commit is contained in:
@@ -234,8 +234,8 @@ var Buffer = Module("Buffer", {
|
||||
})(win || this.win);
|
||||
|
||||
if (focusedFirst)
|
||||
return frames.filter(function (f) f === this.focusedFrame).concat(
|
||||
frames.filter(function (f) f !== this.focusedFrame));
|
||||
return frames.filter(function (f) f === this.focusedFrame, this).concat(
|
||||
frames.filter(function (f) f !== this.focusedFrame, this));
|
||||
return frames;
|
||||
},
|
||||
|
||||
|
||||
Reference in New Issue
Block a user