Summary: | changeFrames(start,count,[,skip,[,ave]]) in the DataVector Class does not work properly | ||
---|---|---|---|
Product: | [Applications] kst | Reporter: | Yiwen Mao <yiwenv> |
Component: | scripting | Assignee: | kst |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | 1.x | ||
Target Milestone: | --- | ||
Platform: | unspecified | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: | |||
Attachments: | the source file to create the data vector |
Description
Yiwen Mao
2008-06-12 18:27:40 UTC
Created attachment 25289 [details]
the source file to create the data vector
This is not a problem with javaScript as much as it is with the update architecture. You can see the same problem by creating a data vector through the UI and then changing its frame properties. If the vector is not being used in a curve then the vector will not be updated. This problem results because there is no attempt made to update vectors in the update thread. Only curves, data objects, data sources, and scalars are updated. If one of these updated objects happens to be dependent upon a given vector, then the vector will also be updated, else it will not. SVN commit 822033 by arwalker: BUG:163925 explicitly update the data vectors in case they are not being used in a plot M +33 -5 updatethread.cpp WebSVN link: http://websvn.kde.org/?view=rev&revision=822033 |