From 052e5fa6ab8ecc21cb0f1600443267081b528d1d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?J=C3=B6rg=20Schummer?= <ext-jorg.2.schummer@nokia.com>
Date: Mon, 19 Apr 2010 14:36:02 +0300
Subject: [PATCH] QmlDesigner.ItemLibrary: Resources view is now updated when
 switching files

Task-number: BAUHAUS-599
---
 .../components/integration/designdocumentcontroller.cpp         | 1 +
 src/plugins/qmldesigner/components/itemlibrary/itemlibrary.cpp  | 2 ++
 2 files changed, 3 insertions(+)

diff --git a/src/plugins/qmldesigner/components/integration/designdocumentcontroller.cpp b/src/plugins/qmldesigner/components/integration/designdocumentcontroller.cpp
index c3116af6b74..b06cd8f7c59 100644
--- a/src/plugins/qmldesigner/components/integration/designdocumentcontroller.cpp
+++ b/src/plugins/qmldesigner/components/integration/designdocumentcontroller.cpp
@@ -342,6 +342,7 @@ void DesignDocumentController::loadCurrentModel()
 
     m_d->model->attachView(m_d->navigator.data());
     m_d->itemLibrary->setMetaInfo(m_d->model->metaInfo());
+    m_d->itemLibrary->setResourcePath(QFileInfo(m_d->fileName).absolutePath());
 
     if (!m_d->componentAction) {
         m_d->componentAction = new ComponentAction(m_d->formEditorView->widget());
diff --git a/src/plugins/qmldesigner/components/itemlibrary/itemlibrary.cpp b/src/plugins/qmldesigner/components/itemlibrary/itemlibrary.cpp
index e28ef88f45d..b6a6872da64 100644
--- a/src/plugins/qmldesigner/components/itemlibrary/itemlibrary.cpp
+++ b/src/plugins/qmldesigner/components/itemlibrary/itemlibrary.cpp
@@ -230,6 +230,7 @@ ItemLibrary::~ItemLibrary()
 void ItemLibrary::setMetaInfo(const MetaInfo &metaInfo)
 {
     m_d->m_itemLibraryModel->update(metaInfo);
+    updateSearch();
 }
 
 void ItemLibrary::setSearchFilter(const QString &searchFilter)
@@ -269,6 +270,7 @@ void ItemLibrary::setResourcePath(const QString &resourcePath)
 {
     if (m_d->m_resourcesView->model() == m_d->m_resourcesDirModel)
         m_d->m_resourcesView->setRootIndex(m_d->m_resourcesDirModel->index(resourcePath));
+    updateSearch();
 }
 
 void ItemLibrary::startDragAndDrop(int itemLibId)
-- 
GitLab