Bug 135992

Summary: Plot ranges don't adjust when modified in "Edit Plot" dialog.
Product: [Applications] kst Reporter: Duncan Hanson <duncan.hanson>
Component: generalAssignee: kst
Status: RESOLVED FIXED    
Severity: normal    
Priority: NOR    
Version: 1.x   
Target Milestone: ---   
Platform: Compiled Sources   
OS: Linux   
Latest Commit: Version Fixed In:

Description Duncan Hanson 2006-10-20 01:05:43 UTC
Version:            (using KDE KDE 3.5.1)
Installed from:    Compiled From Sources

1. create a plot
2. double click the plot in xy zoom mode, select the range tab of the edit plot dialog.
3. try to change the x or y range to some expression, click apply or ok.

the plot range doesn't update! does anyone else have this problem?
Comment 1 George Staikos 2006-10-20 01:10:56 UTC
probably related to the new plot dialog.
Comment 2 Netterfield 2006-10-20 14:59:20 UTC
SVN commit 597466 by netterfield:

BUG: 135992

These lines got recently deleted... anyone know why?



 M  +2 -0      kst2dplot.cpp  


--- trunk/extragear/graphics/kst/src/libkstapp/kst2dplot.cpp #597465:597466
@@ -6473,6 +6473,7 @@
         min -= fabs(min) * 0.01;
       }
     }
+    setXScale(min, max);
   }
 }
 
@@ -6495,6 +6496,7 @@
         min -= fabs(min) * 0.01;
       }
     }
+    setYScale(min, max);
   }
 }