Bug 140628 - Editing the "Transform top axis: Expression" field of the Plot Edit Dialog's X/Y axis tabs does not register as an update.
Summary: Editing the "Transform top axis: Expression" field of the Plot Edit Dialog's ...
Status: RESOLVED FIXED
Alias: None
Product: kst
Classification: Applications
Component: general (show other bugs)
Version: 1.x
Platform: unspecified Linux
: NOR normal
Target Milestone: ---
Assignee: kst
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-01-25 23:35 UTC by Duncan Hanson
Modified: 2007-01-26 01:40 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Duncan Hanson 2007-01-25 23:35:48 UTC
Version:            (using KDE KDE 3.5.5)
Installed from:    00

STEPS TO REPRODUCE:

Open the edit dialog of a plot, select the X axis tab and ensure that 'Transform top axis' is checked. Enter an expression in the field, and click 'Apply', the apply button becomes dimmed. Now, modify the expression.

EXPECTATION: The apply button becomes renabled.

WHAT ACTUALLY HAPPENS: It doesn't.

A very minor bug. This happens in the Y axis tab also.
Comment 1 Andrew Walker 2007-01-26 01:40:55 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()));