9 changes: 0 additions & 9 deletions devel-docs/BugsAndFeatures
Original file line number Diff line number Diff line change
@@ -1,15 +1,9 @@
BUGS
B4. View object stroke widths don't save/restore correctly.

B5. "/home/spider/Documents/../../../data/etc/packets.lnk"


FEATURES
F1. A way of printing nicely C times in text labels (being able to specify,
say, a strftime format string would be great)

F2. A way of formatting scalars in text labels (%.2f or something)

F3. Text labels have no background fill properties.

F4. Nicer date tick marks.
Expand All @@ -22,9 +16,6 @@ F5. Vector-choosing boxes should autocomplete. i.e., if I have only one vector

F6. Non-integer curve stroke width.

F7. Edit and Delete buttons in the Data Manager that do what the context menu
versions do.

F9. Forward and back in smaller steps than whole screen.

F11. Listfile subset
Expand Down
Binary file modified src/images/svg_icons/kst_scalaredit.svgz
Binary file not shown.
Binary file modified src/images/svg_icons/kst_scalarnew.svgz
Binary file not shown.
2 changes: 1 addition & 1 deletion src/libkstmath/labelparser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -648,7 +648,7 @@ static Chunk *parseInternal(Chunk *ctail, const QString& txt, uint& start, uint
return 0L;
}

if (pos+3 < cnt) { // ]{%f} is min size.
if (pos+3 < (int)cnt) { // ]{%f} is min size.
if ((txt[pos+1]=='{') && (txt[pos+2] == '%')) {
formatIndexStart = pos+1;
for (uint searchPt = pos + 2; searchPt < cnt; ++searchPt) {
Expand Down
Loading