Skip to content
This repository has been archived by the owner on Aug 9, 2023. It is now read-only.

Commit

Permalink
Cleanup, changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
alainfrisch committed Dec 19, 2018
1 parent cdab17b commit d413a65
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 16 deletions.
3 changes: 2 additions & 1 deletion CHANGES
@@ -1,5 +1,6 @@
Next version
- GPR#24: config setting for custom timeout after creating folder before moving email to it (Adam Kerz)
- #24: config setting for custom timeout after creating folder before moving email to it (Adam Kerz)
- #60, #62: fix for TB 60.3 (h271fa GitHub user)

0.2.36
- Fix for TB 60 (thanks to lepokle GitHub user)
Expand Down
14 changes: 0 additions & 14 deletions content/folders.js
Expand Up @@ -179,20 +179,6 @@ function NostalgyGetAutoCompleteValuesFunction(box) {
}
}

/* For unknown reason, the popup is left closed (even though box.popupOpen = true)
* when the user does a new nostalgy completion after the previous one has been
* cancelled with Escape. We thus force the popup to be opened some time after
* the completion is done.
*/
if (false && box.popup.state == "closed" && nb != 0)
setTimeout(function() {
if (box.popup.state == "closed") {
NostalgyDebug("Forcing popup to be opened");
var width = box.getBoundingClientRect().width;
box.popup.setAttribute("width", width > 100 ? width : 100);
box.popup.openPopup(box, "before_start", 0, 0, false, false);
} }, 50);

return values;
};
}
Expand Down
2 changes: 1 addition & 1 deletion content/nostalgy.js
Expand Up @@ -331,7 +331,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);
box.controller.handleKeyNavigation(KeyEvent.DOM_VK_DOWN); // Workaround for https://github.com/alainfrisch/nostalgy/issues/60
}
else { // XPFE
// box.mAutoCompleteObserver uses a flawed equality check so we have to replace it.
Expand Down

0 comments on commit d413a65

Please sign in to comment.