From fbbed9dec698c1c123b1d9633ba11f7eb86d18e7 Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Fri, 10 Oct 2008 07:31:04 +0000 Subject: [PATCH] Fix completion --- content/ui.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/ui.js b/content/ui.js index 88be8e5d..3bb2ad72 100644 --- a/content/ui.js +++ b/content/ui.js @@ -820,7 +820,7 @@ liberator.CommandLine = function () //{{{ [completionStartIndex, completions] = res; // sort the completion list - if (liberator.options["wildoptions"].has("sort")) + if (liberator.options.get("wildoptions").has("sort")) completions.sort(function (a, b) String.localeCompare(a[0], b[0])); completionList.setItems(completions);