Bug 888781 part 1 - Use cached default scale in GetDefaultScaleInternal of Windows. r=jimm

MozReview-Commit-ID: Ebm7h3h2mrg

--HG--
extra : rebase_source : e37ddbfca0eee4a7ba04121709f93048b0aab899
This commit is contained in:
Xidorn Quan 2016-09-19 10:35:12 +10:00
Родитель 27ea60709c
Коммит f9678375c6
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1096,7 +1096,7 @@ double nsWindow::GetDefaultScaleInternal()
if (mDefaultScale <= 0.0) {
mDefaultScale = WinUtils::LogToPhysFactor(mWnd);
}
return WinUtils::LogToPhysFactor(mWnd);
return mDefaultScale;
}
int32_t nsWindow::LogToPhys(double aValue)