[Kst] [Bug 139617] Matrix selector is not updated when matrix is deleted
Andrew Walker
arwalker at sumusltd.com
Fri Jan 5 01:15:59 CET 2007
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.kde.org/show_bug.cgi?id=139617
arwalker sumusltd com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From arwalker sumusltd com 2007-01-05 01:15 -------
SVN commit 620005 by arwalker:
BUG:139617 Need to call doUpdates() when a matrix is deleted as well as when a vector is deleted.
M +2 -0 kstdatamanager_i.cpp
--- trunk/extragear/graphics/kst/src/libkstapp/kstdatamanager_i.cpp #620004:620005
@ -829,10 +829,12 @
KST::matrixList.lock().writeLock();
KST::matrixList.removeTag(koi->tagName());
KST::matrixList.lock().unlock();
+ doUpdates();
} else if (qi->rtti() == RTTI_OBJ_STATIC_MATRIX) {
KST::matrixList.lock().writeLock();
KST::matrixList.removeTag(koi->tagName());
KST::matrixList.lock().unlock();
+ doUpdates();
}
update();
} else {
More information about the Kst
mailing list