diff options
| author | Peter Penz <[email protected]> | 2010-06-12 13:18:39 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2010-06-12 13:18:39 +0000 |
| commit | 949cafb4ea8af92b6ee2a468625357f2e4604ae5 (patch) | |
| tree | a4125c1442dc07962f775ebc8e40a2a2b50603bd /src | |
| parent | 30a4fb0cf80ca5bab3082edb544bf87c9169a4f0 (diff) | |
Fix issue, that changing the zoom level has not been applied to the columns of the column view
svn path=/trunk/KDE/kdebase/apps/; revision=1137344
Diffstat (limited to 'src')
| -rw-r--r-- | src/dolphincolumnview.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/dolphincolumnview.cpp b/src/dolphincolumnview.cpp index 3f470bdbc..7e2b522b4 100644 --- a/src/dolphincolumnview.cpp +++ b/src/dolphincolumnview.cpp @@ -125,11 +125,9 @@ DolphinColumnView::DolphinColumnView(QWidget* parent, connect(KGlobalSettings::self(), SIGNAL(kdisplayFontChanged()), this, SLOT(updateFont())); - DolphinViewController* dolphinViewController = m_container->m_dolphinViewController; - connect(dolphinViewController, SIGNAL(zoomLevelChanged(int)), - this, SLOT(setZoomLevel(int))); - const ViewModeController* viewModeController = m_container->m_viewModeController; + connect(viewModeController, SIGNAL(zoomLevelChanged(int)), + this, SLOT(setZoomLevel(int))); const QString nameFilter = viewModeController->nameFilter(); if (!nameFilter.isEmpty()) { m_proxyModel->setFilterFixedString(nameFilter); @@ -137,6 +135,8 @@ DolphinColumnView::DolphinColumnView(QWidget* parent, updateDecorationSize(dolphinView->showPreview()); updateBackground(); + + DolphinViewController* dolphinViewController = m_container->m_dolphinViewController; m_extensionsFactory = new ViewExtensionsFactory(this, dolphinViewController, viewModeController); m_dirLister->openUrl(url, KDirLister::NoFlags); |
