From 5739d08a6f097edddabf1dcecec3133a8bbca32a Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Thu, 19 Dec 2019 21:26:44 -0800 Subject: [PATCH] Fix typo --- extension.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }; } -- 2.44.1