Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
1.0.26

- Reimplement @h271fa PR #62 for original nostalgy (https://github.com/nostalgy/nostalgy/pull/62)
which fixed original #60 (https://github.com/nostalgy/nostalgy/issues/60). This should fix #4.

1.0.25

- Use Services for restart
Expand Down
2 changes: 1 addition & 1 deletion chrome/content/folders.js
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ function NostalgyGetAutoCompleteValuesFunction(box) {
* cancelled with Escape. We thus force the popup to be opened some time after
* the completion is done.
*/
if (box.popup.state == "closed" && nb != 0)
if (false && box.popup.state == "closed" && nb != 0)
setTimeout(function() {
if (box.popup.state == "closed") {
NostalgyDebug("Forcing popup to be opened");
Expand Down
8 changes: 7 additions & 1 deletion chrome/content/nostalgy.js
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,12 @@ function NostalgyHide(restore) {
nostalgy_th_statusBar.hidden = nostalgy_th_statusBar_orig_hidden;

if (nostalgy_focus_saved) {
if (restore) nostalgy_focus_saved.focus ();
if (restore) {
if (nostalgy_folderBox != nostalgy_focus_saved) {
var _nfs = nostalgy_focus_saved;
setTimeout(function() {_nfs.focus();}, 0);
}
}
nostalgy_focus_saved = null;
}
NostalgyDefLabel();
Expand Down Expand Up @@ -331,6 +336,7 @@ function NostalgyShowRecentFoldersList() {
var box = nostalgy_folderBox;
if (box.controller) {// Toolkit
listener = box.controller.QueryInterface(Components.interfaces.nsIAutoCompleteObserver);
box.controller.handleKeyNavigation(KeyEvent.DOM_VK_DOWN);
}
else { // XPFE
// box.mAutoCompleteObserver uses a flawed equality check so we have to replace it.
Expand Down
4 changes: 2 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "Nostalgy",
"description": "Adds shortcuts to change folder, move/copy messages, with folder completion, and other utilities to archive or organise emails. User instructions at tools->addon settings->nostalgy-> Nostalgy usage directions",
"version": "1.0.25",
"version": "1.0.26",
"author": "Alain Frisch, opto (Klaus Buecher)",
"developer": {
"name": "Alain Frisch, opto (Klaus Buecher)"
Expand All @@ -22,4 +22,4 @@
}
}
}