Version: 0.98 (using KDE KDE 3.2.1) Installed from: RedHat RPMs OS: Linux The data wizard remembers settings used the previous time, but does not remember the X vector used (and defaults to INDEX for dirfiles). Instead, it should default to the last X vector used in the wizard.
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());