| Summary: | can only specify error bars in +y direction from command line | ||
|---|---|---|---|
| Product: | [Applications] kst | Reporter: | Brendan Crill <bpc> |
| Component: | general | Assignee: | kst |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | 1.1.0 | ||
| Target Milestone: | --- | ||
| Platform: | Debian testing | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Brendan Crill
2005-10-19 22:01:04 UTC
SVN commit 472104 by arwalker:
BUG:114724 Set the minus Y error to be the same as the plus Y error when the Y error is set from the command line
M +1 -0 main.cpp
--- trunk/extragear/graphics/kst/kst/main.cpp #472103:472104
@@ -534,6 +534,7 @@
evector = GetOrCreateVector(*(errorList.at(i_ycol)), file, in);
if (evector) {
curve->setYError(KstVectorPtr(evector));
+ curve->setYMinusError(KstVectorPtr(evector));
}
}
George, Can you back port this to 1.1.1? cbn SVN commit 472128 by staikos:
backport error bar commandline fix
CCBUG: 114724
M +1 -0 main.cpp
--- branches/work/kst/1.1/kst/kst/main.cpp #472127:472128
@@ -548,6 +548,7 @@
evector = GetOrCreateVector(*(errorList.at(i_ycol)), file, in);
if (evector) {
curve->setYError(KstVectorPtr(evector));
+ curve->setYMinusError(KstVectorPtr(evector));
}
}
|