From 5836c585e2e193608124169b0a122657f588cdaf Mon Sep 17 00:00:00 2001 From: Tobias Doerffel Date: Sun, 2 Mar 2008 07:32:43 +0000 Subject: [PATCH] made dataChanged()->update() connection queued git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@750 0778d3d1-df1d-0410-868b-ea421aaaa00d --- src/core/mv_base.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/mv_base.cpp b/src/core/mv_base.cpp index f9089d073..b8185789c 100644 --- a/src/core/mv_base.cpp +++ b/src/core/mv_base.cpp @@ -49,9 +49,9 @@ void modelView::setModel( model * _model, bool _old_model_valid ) } m_model = _model; QObject::connect( _model, SIGNAL( dataChanged() ), - w, SLOT( update() ) ); + w, SLOT( update() ), Qt::QueuedConnection ); QObject::connect( _model, SIGNAL( propertiesChanged() ), - w, SLOT( update() ) ); + w, SLOT( update() ), Qt::QueuedConnection ); w->update();