]> gitweb.stoutner.com Git - PrivacyBrowserPC.git/blobdiff - src/windows/BrowserWindow.cpp
Fix the application of Domain Settings when navigating history. https://redmine.stout...
[PrivacyBrowserPC.git] / src / windows / BrowserWindow.cpp
index e2dd30109863fe8b8a4a7414aacd3a757ff5afc9..2d647948f21f8663a2b23d4aa3e5aa67860c479f 100644 (file)
@@ -511,7 +511,7 @@ void BrowserWindow::updateOnTheFlyUserAgent(const QString &userAgent) const
 void BrowserWindow::updateOnTheFlyZoomFactor(const double &zoomFactor)
 {
     // Set the current zoom factor.
-    currentZoomFactor = Settings::zoomFactor();
+    currentZoomFactor = zoomFactor;
 
     // Update the zoom factor action text, formatting the double with 2 decimal places.
     zoomFactorActionPointer->setText(ki18nc("@action", "Zoom Factor - %1").subs(zoomFactor, 0, '0', 2).toString());