[Kst] branches/work/kst/portto4/kst

Barth Netterfield netterfield at astro.utoronto.ca
Wed Apr 6 22:44:40 CEST 2011


SVN commit 1227247 by netterfield:

Update local buglist, and add some comments (whitespace changes only)


 M  +0 -7      devel-docs/Kst2Specs/Bugs  
 M  +0 -10     devel-docs/Kst2Specs/Wishlist  
 M  +2 -0      src/plugins/fits/kneefrequency/fitkneefrequency.cpp  
 M  +2 -0      src/plugins/fits/polynomial_unweighted/fitpolynomial_unweighted.cpp  
 M  +2 -0      src/plugins/fits/polynomial_weighted/fitpolynomial_weighted.cpp  
 M  +2 -0      src/plugins/fits/sinusoid_unweighted/fitsinusoid_unweighted.cpp  
 M  +2 -0      src/plugins/fits/sinusoid_weighted/fitsinusoid_weighted.cpp  


--- branches/work/kst/portto4/kst/devel-docs/Kst2Specs/Bugs #1227246:1227247
@@ -3,17 +3,10 @@
 
 --------------------
 
-Artifacts when resizing large arrowheads.
-
---------------------
-
 Curves are rendered slightly above where they should be.  Take a plot
 that it is of very boring data (like always exactly zero) and it'll be
 drawn one pixel above the axis tick mark for zero.  (This is not always the same - sometimes above, sometimes below, sometimes right.)
 So: it appears that ticks and curves use different rounding
 
 Probably related bug: points don't always appear centered on the line.
---------------------
 
-Select box tool.  Escape to cancel.  Mouse zooms don't work until you actually draw a box.
-
--- branches/work/kst/portto4/kst/devel-docs/Kst2Specs/Wishlist #1227246:1227247
@@ -28,11 +28,6 @@
 
 --------
 
-Edit multiple for vectors
-(or get rid of the option in the dialog)
-
---------
-
 data source text box doesn't recognise initial ~ as a euphemism for
    the user's home directory (QDirModel doesn't handle this...)
    (nor QDir, though QDir seems to know about $HOME).
@@ -57,11 +52,6 @@
 
 --------------------
 
-Tied zoom icon should be a mag glass + paper clip
-Replace layout mode icon with zoom icon, and invert sense
-
---------------------
-
 Legends can get larger than the plot if there are enought things in them.  This should not be. 
 
 --------
--- branches/work/kst/portto4/kst/src/plugins/fits/kneefrequency/fitkneefrequency.cpp #1227246:1227247
@@ -444,6 +444,8 @@
     Kst::ScalarPtr min;
     Kst::ScalarPtr noise;
 
+    // access/create scalars before creating plugin
+    // in order to preserve continuous scalar shortnames
     if (setupInputsOutputs) {
       max = config->selectedScalarMax();
       min = config->selectedScalarMin();
--- branches/work/kst/portto4/kst/src/plugins/fits/polynomial_unweighted/fitpolynomial_unweighted.cpp #1227246:1227247
@@ -324,6 +324,8 @@
 
     Kst::ScalarPtr order;
 
+    // access/create scalars before creating plugin
+    // in order to preserve continuous scalar shortnames
     if (setupInputsOutputs) {
       order = config->selectedScalarOrder();
     }
--- branches/work/kst/portto4/kst/src/plugins/fits/polynomial_weighted/fitpolynomial_weighted.cpp #1227246:1227247
@@ -344,6 +344,8 @@
 
     Kst::ScalarPtr order;
 
+    // access/create input scalars before creating plugin
+    // in order to preserve continuous scalar shortnames
     if (setupInputsOutputs) {
       order = config->selectedScalarOrder();
     }
--- branches/work/kst/portto4/kst/src/plugins/fits/sinusoid_unweighted/fitsinusoid_unweighted.cpp #1227246:1227247
@@ -340,6 +340,8 @@
     Kst::ScalarPtr harmonics;
     Kst::ScalarPtr period;
 
+    // access/create input scalars before creating plugin
+    // in order to preserve continuous scalar shortnames
     if (setupInputsOutputs) {
       harmonics = config->selectedScalarHarmonics();
       period = config->selectedScalarPeriod();
--- branches/work/kst/portto4/kst/src/plugins/fits/sinusoid_weighted/fitsinusoid_weighted.cpp #1227246:1227247
@@ -363,6 +363,8 @@
     Kst::ScalarPtr harmonics;
     Kst::ScalarPtr period;
 
+    // access/create input scalars before creating plugin
+    // in order to preserve continuous scalar shortnames
     if (setupInputsOutputs) {
       harmonics = config->selectedScalarHarmonics();
       period = config->selectedScalarPeriod();


More information about the Kst mailing list