[Pkg-mozext-commits] [nostalgy] 188/252: Do not show TB's status bar again after Nostalgy action, when the user does not want it.
David Prévot
taffit at moszumanska.debian.org
Tue Jun 14 15:24:57 UTC 2016
This is an automated email from the git hooks/post-receive script.
taffit pushed a commit to branch master
in repository nostalgy.
commit ca21d514220769468a603493bd2181f79d97333d
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.
---
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