[Pkg-mozext-commits] [nostalgy] 102/235: *** empty log message ***
David Prévot
taffit at alioth.debian.org
Tue Oct 8 20:41:54 UTC 2013
This is an automated email from the git hooks/post-receive script.
taffit pushed a commit to branch master
in repository nostalgy.
commit 95d29a19bc76bf14b2ffaefdbf58901e4955c405
Author: frisch <frisch at 56b81dcf-5a2f-0410-9db0-014be2e416ff>
Date: Thu May 31 07:04:13 2007 +0000
*** empty log message ***
git-svn-id: http://nostalgy.googlecode.com/svn/trunk@102 56b81dcf-5a2f-0410-9db0-014be2e416ff
---
content/folders.js | 4 ----
content/messageOverlay.xul | 4 ++--
content/nostalgy.js | 8 ++++----
content/nostalgy_keys.js | 4 ++--
content/thunderbirdOverlay.xul | 4 ++--
files | 21 +++++++++++----------
6 files changed, 21 insertions(+), 24 deletions(-)
diff --git a/content/folders.js b/content/folders.js
index a0da291..651a88d 100644
--- a/content/folders.js
+++ b/content/folders.js
@@ -267,10 +267,6 @@ function NostalgyFolderSelectionBox(box) {
box.addSession(new NostalgyAutocomplete(box));
box.processInput = NostalgyProcessInput;
box.processKeyPress = NostalgyProcessKeyPress;
- box.addEventListener("blur",function(){
- setTimeout(function() {
- if (!box.getAttribute("focused")) box.undoAutoComplete();
- }, 100); },true);
}
function NostalgyFolderSelectionBoxes() {
diff --git a/content/messageOverlay.xul b/content/messageOverlay.xul
index 702ea97..4752b2a 100644
--- a/content/messageOverlay.xul
+++ b/content/messageOverlay.xul
@@ -25,8 +25,8 @@
<textbox id="nostalgy-folderbox" type="autocomplete" tabScrolling="true"
ontextentered="NostalgyRunCommand();"
ontextcommand="NostalgyRunCommand();"
- ontextreverted="NostalgyHide();"
- ontextrevert="NostalgyHide();"
+ ontextreverted="NostalgyHide(true);"
+ ontextrevert="NostalgyHide(true);"
flex="1"
maxrows="25" crop="center"
/>
diff --git a/content/nostalgy.js b/content/nostalgy.js
index c29db35..cbf09e4 100644
--- a/content/nostalgy.js
+++ b/content/nostalgy.js
@@ -341,16 +341,16 @@ function NostalgyHideIfBlurred() {
setTimeout(function (){
if ((!nostalgy_statusBar.hidden) &&
(document.commandDispatcher.focusedElement != nostalgy_folderBox))
- { NostalgyHide(); }
+ { NostalgyHide(false); }
}, 500);
}
-function NostalgyHide() {
+function NostalgyHide(restore) {
nostalgy_statusBar.hidden = true;
nostalgy_th_statusBar.hidden = false;
if (focus_saved) {
- focus_saved.focus ();
+ if (restore) focus_saved.focus ();
focus_saved = null;
}
NostalgyDefLabel();
@@ -416,7 +416,7 @@ function NostalgyCreateTag(name) {
}
function NostalgyRunCommand() {
- NostalgyHide();
+ NostalgyHide(true);
var s = nostalgy_folderBox.value;
var f = NostalgyResolveFolder(s);
if (f) {
diff --git a/content/nostalgy_keys.js b/content/nostalgy_keys.js
index 30ae3a0..89ce64c 100644
--- a/content/nostalgy_keys.js
+++ b/content/nostalgy_keys.js
@@ -11,10 +11,10 @@ var nostalgy_keys = [
"JS:NostalgyGoCommand();"],
["go_suggest","Go as suggested","shift G",
"JS:NostalgyGoSuggestedCommand();"],
- ["save_go","Save message and go there","control S",
+ ["save_go","Save message and go there","B",
"JS:NostalgySaveAndGo();"],
["save_go_suggest","Save message as suggested and go there",
- "control shift S",
+ "shift B",
"JS:NostalgySaveAndGoSuggested();"],
["hide_folders","Hide folder pane","L",
diff --git a/content/thunderbirdOverlay.xul b/content/thunderbirdOverlay.xul
index cbd7097..cf2c228 100644
--- a/content/thunderbirdOverlay.xul
+++ b/content/thunderbirdOverlay.xul
@@ -40,8 +40,8 @@
<textbox id="nostalgy-folderbox" type="autocomplete" tabScrolling="true"
ontextentered="NostalgyRunCommand();"
ontextcommand="NostalgyRunCommand();"
- ontextreverted="NostalgyHide();"
- ontextrevert="NostalgyHide();"
+ ontextreverted="NostalgyHide(true);"
+ ontextrevert="NostalgyHide(true);"
flex="1"
maxrows="25" crop="center"
/>
diff --git a/files b/files
index de5d4d7..edfdad5 100644
--- a/files
+++ b/files
@@ -1,18 +1,19 @@
+content/about.xhtml
content/about.xul
-content/edit_prefs.xul
-content/thunderbirdOverlay.xul
-content/misc.js
-content/dummy_window.xul
content/composer.js
-content/messageOverlay.xul
-content/about.xhtml
-content/edit_rule.xul
-content/folders.js
-content/edit_rule.js
content/composerOverlay.xul
-content/nostalgy_keys.js
content/edit_prefs.js
+content/edit_prefs.xul
+content/edit_rule.js
+content/edit_rule.xul
+content/folders.js
+content/messageOverlay.xul
content/nostalgy.js
+content/thunderbirdOverlay.xul
+content/.#nostalgy.js.1.34
+content/dummy_window.xul
+content/nostalgy_keys.js
+content/misc.js
locale/en-US/nostalgy.dtd
locale/en-US/nostalgy.properties
defaults/preferences/nostalgy.js
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-mozext/nostalgy.git
More information about the Pkg-mozext-commits
mailing list