commit 96351750f8b6dda629c970c417d313f780669cef Author: Tomás Touceda chiiph@torproject.org Date: Mon Jul 9 18:31:43 2012 -0300
Check whether to show the tray icon message using settings --- tbb/tbb.js | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/tbb/tbb.js b/tbb/tbb.js index d23f77c..124c855 100644 --- a/tbb/tbb.js +++ b/tbb/tbb.js @@ -343,7 +343,7 @@ var tbb = { },
showWaitDialog: function() { - if (this.chkTrayShow.checkState() == Qt.Checked) { + if (this.tab.getSetting("DontShowTrayBox", "false") != "true") { if(QSystemTrayIcon.supportsMessages()) { if (this.browserProcess.state() == QProcess.Running) { VidaliaMainWindow.
tor-commits@lists.torproject.org