| Summary: | Editing the "Transform top axis: Expression" field of the Plot Edit Dialog's X/Y axis tabs does not register as an update. | ||
|---|---|---|---|
| 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: | unspecified | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Duncan Hanson
2007-01-25 23:35:48 UTC
SVN commit 627218 by arwalker: BUG:140628 Add the missing connection M +1 -0 kst2dplot.cpp --- trunk/extragear/graphics/kst/src/libkstapp/kst2dplot.cpp #627217:627218 @@ -7003,6 +7003,7 @@ connect( widget->_comboBoxXInterpret, SIGNAL( activated(int) ), parent, SLOT(modified())); connect( widget->_comboBoxXDisplay, SIGNAL( activated(int) ), parent, SLOT(modified())); connect( widget->_xTransformTop, SIGNAL( stateChanged(int) ), parent, SLOT(modified())); + connect( widget->_xTransformTopExp, SIGNAL( textChanged(const QString&) ), parent, SLOT(modified())); connect( widget->_xMajorTickSpacing, SIGNAL( activated(int) ), parent, SLOT(modified())); connect( widget->_xMinorTicks, SIGNAL( valueChanged(int) ), parent, SLOT(modified())); connect( widget->_xMinorTicksAuto, SIGNAL( stateChanged(int) ), parent, SLOT(modified())); |