From 572656341e23a178fcdd1f92fc7650685dcdf470 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Hern=C3=A1ndez=20Cordero?= Date: Tue, 15 Aug 2023 22:48:12 +0200 Subject: [PATCH] call propertyHiddenChanged synchronously MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Alejandro Hernández Cordero --- rviz_common/src/rviz_common/properties/property_tree_widget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rviz_common/src/rviz_common/properties/property_tree_widget.cpp b/rviz_common/src/rviz_common/properties/property_tree_widget.cpp index 21aaa75e4..ca3daaac2 100644 --- a/rviz_common/src/rviz_common/properties/property_tree_widget.cpp +++ b/rviz_common/src/rviz_common/properties/property_tree_widget.cpp @@ -101,7 +101,7 @@ void PropertyTreeWidget::setModel(PropertyTreeModel * model) if (model_) { connect( model_, SIGNAL(propertyHiddenChanged(const Property*)), - this, SLOT(propertyHiddenChanged(const Property*)), Qt::QueuedConnection); + this, SLOT(propertyHiddenChanged(const Property*))); connect( model_, SIGNAL(expand(const QModelIndex&)), this, SLOT(expand(const QModelIndex&)));