From a2fec5c367eb2f047493e5a504fcd1512a502660 Mon Sep 17 00:00:00 2001 From: Tobias Alexander Franke Date: Tue, 26 Oct 2021 09:48:50 +0800 Subject: [PATCH] keyword bug fixed Signed-off-by: T.J. McGrath-Daly --- .../ComponentEntityEditorPlugin/UI/Outliner/OutlinerWidget.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerWidget.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerWidget.cpp index af58ac4b6b..15bdfa9bf2 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerWidget.cpp +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerWidget.cpp @@ -1281,6 +1281,8 @@ void OutlinerWidget::OnSearchTextChanged(const QString& activeTextFilter) m_listModel->SearchStringChanged(filterString); m_proxyModel->UpdateFilter(); + + m_gui->m_objectTree->expandAll(); } void OutlinerWidget::OnFilterChanged(const AzQtComponents::SearchTypeFilterList& activeTypeFilters)