[Kst] branches/work/kst/portto4/kst
Nicolas Brisset
nicolas.brisset at eurocopter.com
Tue Sep 28 22:22:43 CEST 2010
SVN commit 1180762 by brisset:
Minor fixlets
M +1 -0 run-kst
M +4 -3 src/libkstapp/mainwindow.cpp
--- branches/work/kst/portto4/kst/run-kst #1180761:1180762
@@ -4,5 +4,6 @@
export SCRIPTDIR=$PWD
export BUILDDIR=$PWD/build
+export LD_LIBRARY_PATH=$BUILDDIR/lib:$LD_LIBRARY_PATH
$BUILDDIR/bin/kst2 "$@"
--- branches/work/kst/portto4/kst/src/libkstapp/mainwindow.cpp #1180761:1180762
@@ -864,7 +864,7 @@
connect(_tiedZoomAct, SIGNAL(triggered()), this, SLOT(toggleTiedZoom()));
- _highlightPointAct = new QAction(tr("&Highlight data point"), this);
+ _highlightPointAct = new QAction(tr("&Highlight Data Points"), this);
_highlightPointAct->setStatusTip(tr("Highlight closest data point"));
_highlightPointAct->setIcon(QPixmap(":kst_datamode.png"));
_highlightPointAct->setCheckable(true);
@@ -874,8 +874,8 @@
// Then, exclusive interaction modes
QActionGroup* _interactionModeGroup = new QActionGroup(this);
- _standardZoomAct = _interactionModeGroup->addAction(tr("X-Y Zoom/Scroll"));
- _standardZoomAct->setStatusTip(tr("Zoom &arbitrary in X- or Y-direction"));
+ _standardZoomAct = _interactionModeGroup->addAction(tr("X-Y &Zoom/Scroll"));
+ _standardZoomAct->setStatusTip(tr("Zoom arbitrarily in X- or Y-direction"));
//TODO _standardZoomAct->setShortcut(QString("a"));
_standardZoomAct->setCheckable(true);
_standardZoomAct->setData(View::ZoomOnlyDisabled);
@@ -1122,6 +1122,7 @@
_annotationToolBar = addToolBar(tr("Advanced Layout"));
_annotationToolBar->setObjectName("Advanced Layout Toolbar");
_annotationToolBar->addAction(_createSharedAxisBoxAct);
+ _annotationToolBar->addSeparator();
_annotationToolBar->addAction(_createLabelAct);
_annotationToolBar->addAction(_createBoxAct);
_annotationToolBar->addAction(_createCircleAct);
More information about the Kst
mailing list