Bug 135992 - Plot ranges don't adjust when modified in "Edit Plot" dialog.
Summary: Plot ranges don't adjust when modified in "Edit Plot" dialog.
Status: RESOLVED FIXED
Alias: None
Product: kst
Classification: Applications
Component: general (show other bugs)
Version: 1.x
Platform: Compiled Sources Linux
: NOR normal
Target Milestone: ---
Assignee: kst
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-10-20 01:05 UTC by Duncan Hanson
Modified: 2006-10-20 14:59 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 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);
   }
 }