Skip to content

Commit

Permalink
Clean up svgs to remove qicon error msgs.
Browse files Browse the repository at this point in the history
  • Loading branch information
netterfield committed Dec 15, 2016
1 parent a81dcad commit 0601d4e
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 12 deletions.
9 changes: 0 additions & 9 deletions devel-docs/BugsAndFeatures
@@ -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.
5 changes: 2 additions & 3 deletions src/widgets/scalarselector.cpp
Expand Up @@ -28,8 +28,7 @@ ScalarSelector::ScalarSelector(QWidget *parent, ObjectStore *store)
_defaultsSet = false;
setupUi(this);

QIcon icon = KstGetIcon("kst_scalarnew");
_newScalar->setIcon(icon);
_newScalar->setIcon(KstGetIcon("kst_scalarnew"));
_editScalar->setIcon(KstGetIcon("kst_scalaredit"));

_newScalar->setFixedSize(iconWidth(), iconWidth());
Expand All @@ -38,14 +37,14 @@ ScalarSelector::ScalarSelector(QWidget *parent, ObjectStore *store)

_scalarListSelector = new ScalarListSelector(this);


//_scalar->resize(10,5);
connect(_newScalar, SIGNAL(pressed()), this, SLOT(newScalar()));
connect(_editScalar, SIGNAL(pressed()), this, SLOT(editScalar()));
connect(_selectScalar, SIGNAL(pressed()), this, SLOT(selectScalar()));
connect(_scalar, SIGNAL(editTextChanged(QString)), this, SLOT(emitSelectionChanged()));
connect(_scalar, SIGNAL(editTextChanged(QString)), this, SLOT(updateDescriptionTip()));
connect(UpdateServer::self(), SIGNAL(objectListsChanged()), this, SLOT(updateScalarList()));

}


Expand Down

0 comments on commit 0601d4e

Please sign in to comment.