[Kst] branches/work/kst/portto4/kst/src/libkstapp
Barth Netterfield
netterfield at astro.utoronto.ca
Fri Dec 11 15:32:32 CET 2009
SVN commit 1061342 by netterfield:
CCBUG: 216740
The curve dialog now works, as long as your mouse does not leave and re-enter the dialog.
(Repainting cleared combo boxes un-clears them.)
M +1 -1 commandlineparser.cpp
M +1 -1 curvedialog.cpp
--- branches/work/kst/portto4/kst/src/libkstapp/commandlineparser.cpp #1061341:1061342
@@ -206,7 +206,7 @@
for (int i=0; i<_vectors.count(); i++) {
xv = _vectors.at(i);
if (field == xv->field()) {
- if ((xv->startFrame() == _startFrame) &&
+ if ((xv->reqStartFrame() == _startFrame) &&
(xv->reqNumFrames() == _numFrames) &&
(xv->skip() == _skip) &&
(xv->doSkip() == (_skip>0)) &&
--- branches/work/kst/portto4/kst/src/libkstapp/curvedialog.cpp #1061341:1061342
@@ -238,7 +238,7 @@
bool CurveTab::ignoreAutoScaleDirty() const {
- return _ignoreAutoScale->checkState() == Qt::PartiallyChecked;
+ return _ignoreAutoScale->checkState() != Qt::PartiallyChecked;
}
More information about the Kst
mailing list