]> git.scottworley.com Git - roundrobintaborder/commitdiff
Fix typo v1
authorScott Worley <scottworley@scottworley.com>
Fri, 20 Dec 2019 05:26:44 +0000 (21:26 -0800)
committerScott Worley <scottworley@scottworley.com>
Fri, 20 Dec 2019 05:26:44 +0000 (21:26 -0800)
extension.js

index 3b5a6a6efea4fb69ceceb66ccbf14ce9f8672dfa..253200c27eb3e74e4d8625c5e436e31149615b33 100644 (file)
@@ -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;
     };
 }