summaryrefslogtreecommitdiff
path: root/src/mainview.cpp
diff options
context:
space:
mode:
authorlionelc <lionelc@lionelc.(none)>2010-08-09 19:44:19 +0200
committerlionelc <lionelc@lionelc.(none)>2010-08-09 19:44:19 +0200
commit06583dfe2267b676c85b5aa479b80bf6a502b9fb (patch)
treea224a88cd77b611e154caf8ec06983577c848890 /src/mainview.cpp
parentSVN_SILENT made messages (.desktop file) (diff)
downloadrekonq-06583dfe2267b676c85b5aa479b80bf6a502b9fb.tar.xz
add zoom bar at the bottom of rekonq, remove zoom widgets from the tool button menu
Diffstat (limited to 'src/mainview.cpp')
-rw-r--r--src/mainview.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/mainview.cpp b/src/mainview.cpp
index 335bcfae..cf0565f0 100644
--- a/src/mainview.cpp
+++ b/src/mainview.cpp
@@ -293,10 +293,6 @@ void MainView::currentChanged(int index)
else
emit browserTabLoading(true);
- // update zoom slider
- if (!Application::instance()->mainWindowList().isEmpty())
- Application::instance()->mainWindow()->setZoomSliderFactor(tab->view()->zoomFactor());
-
// set focus to the current webview
if (tab->url().scheme() == QL1S("about"))
_widgetBar->currentWidget()->setFocus();
@@ -329,7 +325,6 @@ WebTab *MainView::newWebTab(bool focused)
connect(tab->view(), SIGNAL(iconChanged()), this, SLOT(webViewIconChanged()));
connect(tab->view(), SIGNAL(titleChanged(const QString &)), this, SLOT(webViewTitleChanged(const QString &)));
connect(tab->view(), SIGNAL(urlChanged(const QUrl &)), this, SLOT(webViewUrlChanged(const QUrl &)));
- connect(tab->view(), SIGNAL(zoomChanged(qreal)), m_parentWindow, SLOT(setZoomSliderFactor(qreal)));
// connecting webPage signals with mainview
connect(tab->view()->page(), SIGNAL(windowCloseRequested()), this, SLOT(windowCloseRequested()));