[Pkg-mozext-commits] [nostalgy] 189/235: Do not show TB's status bar again after Nostalgy action, when the user does not want it.

David Prévot taffit at alioth.debian.org
Tue Oct 8 20:42:22 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 f01b1cd071e5220d0a060b6c9088eb1174f0f5ed
Author: frisch <frisch at 56b81dcf-5a2f-0410-9db0-014be2e416ff>
Date:   Mon Jan 4 09:14:45 2010 +0000

    Do not show TB's status bar again after Nostalgy action, when the user does not want it.
    
    git-svn-id: http://nostalgy.googlecode.com/svn/trunk@189 56b81dcf-5a2f-0410-9db0-014be2e416ff
---
 CHANGES             |    2 ++
 content/nostalgy.js |    4 +++-
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/CHANGES b/CHANGES
index f019386..073e443 100644
--- a/CHANGES
+++ b/CHANGES
@@ -2,6 +2,8 @@ Since 0.2.23
   - Remove special support for the QuickSearch box
   - general code cleanup
   - bug fix: tags where not always found when used for custom keys
+  - Do not show TB's status bar again after Nostalgy action,
+    when the user does not want it
 
 0.2.23
   - Add explicit size for the preference dialog.
diff --git a/content/nostalgy.js b/content/nostalgy.js
index b23d907..746cd74 100644
--- a/content/nostalgy.js
+++ b/content/nostalgy.js
@@ -4,6 +4,7 @@ var nostalgy_folderBox = null;
 var nostalgy_statusBar = null;
 var nostalgy_label = null;
 var nostalgy_th_statusBar = null;
+var nostalgy_th_statusBar_orig_hidden = true;
 var nostalgy_cmdLabel = null;
 var nostalgy_extracted_rules = "";
 var nostalgy_active_keys = { };
@@ -302,7 +303,7 @@ function NostalgyHideIfBlurred() {
 
 function NostalgyHide(restore) {
  nostalgy_statusBar.hidden = true;
- nostalgy_th_statusBar.hidden = false;
+ nostalgy_th_statusBar.hidden = nostalgy_th_statusBar_orig_hidden;
 
  if (focus_saved) {
   if (restore) focus_saved.focus ();
@@ -342,6 +343,7 @@ function NostalgyCmd(lab,cmd,require_file) {
  nostalgy_search_folder_options.require_file = require_file;
  nostalgy_cmdLabel.value = lab;
  nostalgy_command = cmd;
+ nostalgy_th_statusBar_orig_hidden = nostalgy_th_statusBar.hidden;
  nostalgy_th_statusBar.hidden = true;
  nostalgy_folderBox.shell_completion = false;
  nostalgy_statusBar.hidden = false;

-- 
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