diff options
author | lionelc <lionelc@lionelc.(none)> | 2010-08-09 19:44:19 +0200 |
---|---|---|
committer | lionelc <lionelc@lionelc.(none)> | 2010-08-09 19:44:19 +0200 |
commit | 06583dfe2267b676c85b5aa479b80bf6a502b9fb (patch) | |
tree | a224a88cd77b611e154caf8ec06983577c848890 /src/mainview.cpp | |
parent | SVN_SILENT made messages (.desktop file) (diff) | |
download | rekonq-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.cpp | 5 |
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())); |