| Summary: | curveplacement widget does not update correctly when curves are deleted | ||
|---|---|---|---|
| Product: | [Applications] kst | Reporter: | Duncan Hanson <duncan.hanson> |
| Component: | general | Assignee: | kst |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | 1.x | ||
| Target Milestone: | --- | ||
| Platform: | Compiled Sources | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Duncan Hanson
2006-05-09 02:29:53 UTC
SVN commit 538945 by staikos:
Update the plot list properly
BUG: 126998
M +1 -1 curveplacementwidget.ui.h
--- trunk/extragear/graphics/kst/src/widgets/curveplacementwidget.ui.h #538944:538945
@@ -85,7 +85,7 @@
_plotList->insertItem(*i);
}
- if (!old.isNull() && _plotList->count() > 0) {
+ if (!old.isNull() && plots.contains(old)) {
_plotList->setCurrentText(old);
}
}
|