| Summary: | data wizard doesn't remember X vector used last time | ||
|---|---|---|---|
| Product: | [Applications] kst | Reporter: | Matthew Truch <matt> |
| Component: | general | Assignee: | kst |
| Status: | RESOLVED FIXED | ||
| Severity: | wishlist | ||
| Priority: | NOR | ||
| Version First Reported In: | 1.x | ||
| Target Milestone: | --- | ||
| Platform: | RedHat Enterprise Linux | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Matthew Truch
2004-07-15 01:18:25 UTC
CVS commit by staikos: remember the previous X vector CCMAIL: 85214-done@bugs.kde.org M +7 -1 datawizard.ui.h 1.62 --- kdeextragear-2/kst/kst/datawizard.ui.h #1.61:1.62 @@ -120,4 +120,9 @@ void DataWizard::sourceChanged( const QS new QCheckListItem(_vectors, *it, QCheckListItem::CheckBox); } + KST::vectorDefaults.sync(); + QString defaultX = KST::vectorDefaults.wizardXVector(); + if (defaultX == "INDEX" || fl.contains(defaultX)) { + _xVector->setCurrentText(defaultX); + } } } else if (!_ds) { @@ -157,5 +162,6 @@ void DataWizard::showPage( QWidget *page } } else if (page == _pagePlot) { - + KST::vectorDefaults.setWizardXVector(_xVector->currentText()); + KST::vectorDefaults.sync(); if (!_filterList->currentText().isEmpty() && (!_filter || _filter->name() != _filterList->currentText())) { _filter = KST::filterSetList.find(_filterList->currentText()); |