mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-02-21 08:05:45 +01:00
Fix bug?
This commit is contained in:
@@ -1139,7 +1139,6 @@ var CommandLine = Module("commandline", {
|
|||||||
if (!this.session.active)
|
if (!this.session.active)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
this.context.updateAsync = true;
|
|
||||||
this.reset(show, tabPressed);
|
this.reset(show, tabPressed);
|
||||||
this.wildIndex = 0;
|
this.wildIndex = 0;
|
||||||
this._caret = this.caret;
|
this._caret = this.caret;
|
||||||
@@ -1179,6 +1178,7 @@ var CommandLine = Module("commandline", {
|
|||||||
|
|
||||||
if (show) {
|
if (show) {
|
||||||
this.itemList.update();
|
this.itemList.update();
|
||||||
|
this.context.updateAsync = true;
|
||||||
if (this.haveType("list"))
|
if (this.haveType("list"))
|
||||||
this.itemList.visible = true;
|
this.itemList.visible = true;
|
||||||
this.selected = null;
|
this.selected = null;
|
||||||
|
|||||||
@@ -89,6 +89,12 @@ var Messages = Module("messages", {
|
|||||||
return arguments.length > 2 ? default_ : value;
|
return arguments.length > 2 ? default_ : value;
|
||||||
},
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Exports known localizable strings to a properties file.
|
||||||
|
*
|
||||||
|
* @param {string|nsIFile} {file} The file to which to export
|
||||||
|
* the strings.
|
||||||
|
*/
|
||||||
export: function export_(file) {
|
export: function export_(file) {
|
||||||
let { Buffer, commands, hints, io, mappings, modes, options, sanitizer } = overlay.activeModules;
|
let { Buffer, commands, hints, io, mappings, modes, options, sanitizer } = overlay.activeModules;
|
||||||
file = io.File(file);
|
file = io.File(file);
|
||||||
|
|||||||
Reference in New Issue
Block a user