зеркало из https://github.com/mozilla/gecko-dev.git
part of fix for 11651 turn off cylon mode in progress when have non zero percentage a=chofmann
This commit is contained in:
Родитель
6fe0e9d480
Коммит
2f8ae296c6
|
@ -161,6 +161,9 @@ nsMsgStatusFeedback::ShowProgress(PRInt32 percentage)
|
|||
{
|
||||
nsString strPercentage;
|
||||
|
||||
if (percentage >= 0)
|
||||
setAttribute(mWebShell, "Messenger:LoadingProgress", "mode","normal");
|
||||
|
||||
strPercentage.Append(percentage, 10);
|
||||
setAttribute( mWebShell, "Messenger:LoadingProgress", "value", strPercentage);
|
||||
return NS_OK;
|
||||
|
|
Загрузка…
Ссылка в новой задаче