From 87b743188e34407096be1b628ce5b5af2e42c5d0 Mon Sep 17 00:00:00 2001 From: "Aaron J. Seigo" Date: Fri, 28 Aug 2009 19:07:56 +0000 Subject: [PATCH] update the toolbox when the activity changes as it may be showing the name of it svn path=/trunk/KDE/kdelibs/; revision=1016743 --- containment.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/containment.cpp b/containment.cpp index 0c60f047f..c2c35dba4 100644 --- a/containment.cpp +++ b/containment.cpp @@ -1751,6 +1751,10 @@ void Containment::setActivity(const QString &activity) KConfigGroup c = config(); c.writeEntry("activity", activity); + + if (d->toolBox) { + d->toolBox->update(); + } emit configNeedsSaving(); } }