diff options
author | Einar Egilsson | 2011-08-26 16:55:21 +0200 |
---|---|---|
committer | Einar Egilsson | 2011-08-26 16:55:21 +0200 |
commit | 9b57efe67dd9f16ab30886182b6591b589c29bbf (patch) | |
tree | a51c4471b1ed692c0ccbc0b8ffd44dcb5988eafd /chrome/code/settings.xul.js | |
parent | e3b36411d27c6fa6575b386738f9bfd3d582c50a (diff) |
Added close button + alt+r shortcut to toggle enabled
Diffstat (limited to 'chrome/code/settings.xul.js')
-rw-r--r-- | chrome/code/settings.xul.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/code/settings.xul.js b/chrome/code/settings.xul.js index c7f780a..bee7817 100644 --- a/chrome/code/settings.xul.js +++ b/chrome/code/settings.xul.js @@ -217,12 +217,12 @@ var Settings = { //Mostly borrowed from Adblock Plus var picker = Cc["@mozilla.org/filepicker;1"].createInstance(Ci.nsIFilePicker); picker.init(window, this.strings.getString(captionKey), mode); - picker.defaultExtension = ".rdx"; + picker.defaultExtension = ".rjson"; var dir = this.prefs.defaultDir; if (dir) { picker.displayDirectory = new nsLocalFile(dir); } - picker.appendFilter(this.strings.getString('redirectorFiles'), '*.rdx'); + picker.appendFilter(this.strings.getString('redirectorFiles'), '*.rjson'); if (picker.show() == picker.returnCancel) { return null; |