X-Git-Url: http://git.scottworley.com/roundrobintaborder/blobdiff_plain/92e93330357a4c590b95369658d119f96394900b..5739d08a6f097edddabf1dcecec3133a8bbca32a:/extension.js?ds=inline diff --git a/extension.js b/extension.js index 3b5a6a6..253200c 100644 --- a/extension.js +++ b/extension.js @@ -38,7 +38,7 @@ function enable() { global.display.get_tab_list = function(type, workspace) { const ret = oldGetTabList.call(this, type, workspace); const currentWindow = global.display.get_focus_window().get_id(); - ret.sort((a, b) => roundRobinRomparitor(currentWindow, a, b)); + ret.sort((a, b) => roundRobinComparitor(currentWindow, a, b)); return ret; }; }