| Summary: | data wizard adds psd to curve plots in certain cases | ||
|---|---|---|---|
| Product: | [Applications] kst | Reporter: | Netterfield <netterfield> |
| Component: | general | Assignee: | Netterfield <netterfield> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | 1.x | ||
| Target Milestone: | --- | ||
| Platform: | unspecified | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
| Attachments: | wizardcycle.patch | ||
|
Description
Netterfield
2004-11-23 02:45:37 UTC
Attached is the fix. Created an attachment (id=8388) wizardcycle.patch CVS commit by netterfield:
Fix assignment of psds to plots....
BUG: 93765
M +4 -0 datawizard.ui.h 1.99
--- kdeextragear-2/kst/kst/datawizard.ui.h #1.98:1.99
@@ -695,4 +695,7 @@ void DataWizard::finished()
if (!_onePlot->isChecked()) { // change plots if we are not onePlot...
if (++pit == plots.end()) {
+ if (_radioButtonPlotDataPSD->isChecked()) { // if xy and psd
+ pit = plots.at(plots.count()/2);
+ } else {
pit = plots.begin();
}
@@ -700,4 +703,5 @@ void DataWizard::finished()
}
}
+ }
app->slotUpdateProgress(n_steps, ++prg, i18n("Creating PSDs..."));
}
|