Summary: | Matrix selector is not updated when matrix is deleted | ||
---|---|---|---|
Product: | [Applications] kst | Reporter: | Andrew Walker <arwalker> |
Component: | general | Assignee: | kst |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | 1.x | ||
Target Milestone: | --- | ||
Platform: | Compiled Sources | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Andrew Walker
2007-01-05 01:06:24 UTC
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 { |