| Summary: | Plot ranges don't adjust when modified in "Edit Plot" dialog. | ||
|---|---|---|---|
| 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: | Compiled Sources | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Duncan Hanson
2006-10-20 01:05:43 UTC
probably related to the new plot dialog. 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);
}
}
|