From e6387c6acf15e2652a75527cc8211928e2ac9588 Mon Sep 17 00:00:00 2001 From: wmayer Date: Thu, 3 Jan 2013 22:27:56 +0100 Subject: [PATCH] Connect task box labels with commands as queued connection --- src/Gui/TaskView/TaskView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Gui/TaskView/TaskView.cpp b/src/Gui/TaskView/TaskView.cpp index 38640f2a1..c93961318 100644 --- a/src/Gui/TaskView/TaskView.cpp +++ b/src/Gui/TaskView/TaskView.cpp @@ -116,7 +116,7 @@ void TaskGroup::actionEvent (QActionEvent* e) TaskIconLabel *label = new TaskIconLabel( action->icon(), action->text(), this); this->addIconLabel(label); - connect(label,SIGNAL(clicked()),action,SIGNAL(triggered())); + connect(label,SIGNAL(clicked()),action,SIGNAL(triggered()),Qt::QueuedConnection); break; } case QEvent::ActionChanged: