Mercurial > hg > svgui
diff widgets/PropertyBox.cpp @ 35:10ba9276a315
* Add TextModel and TextLayer types
* Make View refresh work better when editing a model (previously edits might
not be refreshed if their visible changed area extended beyond the strict
frame range that was being modified in the model)
* Add phase-adjusted instantaneous frequency display to spectrogram layer
(still a work in progress)
* Pull maths aliases out into a separate header in dsp/maths so MathUtilities
can be included without introducing them
author | Chris Cannam |
---|---|
date | Mon, 20 Feb 2006 13:33:36 +0000 |
parents | c43f2c4f66f2 |
children | c28ebb4ba4de |
line wrap: on
line diff
--- a/widgets/PropertyBox.cpp Fri Feb 17 18:11:08 2006 +0000 +++ b/widgets/PropertyBox.cpp Mon Feb 20 13:33:36 2006 +0000 @@ -148,7 +148,7 @@ gainDial->setFixedWidth(24); gainDial->setFixedHeight(24); gainDial->setNotchesVisible(false); - gainDial->setToolTip(tr("Layer playback level")); + gainDial->setToolTip(tr("Layer playback Level")); gainDial->setDefaultValue(0); connect(gainDial, SIGNAL(valueChanged(int)), this, SLOT(playGainDialChanged(int))); @@ -169,7 +169,7 @@ panDial->setFixedWidth(24); panDial->setFixedHeight(24); panDial->setNotchesVisible(false); - panDial->setToolTip(tr("Layer playback pan")); + panDial->setToolTip(tr("Layer playback Pan / Balance")); panDial->setDefaultValue(0); connect(panDial, SIGNAL(valueChanged(int)), this, SLOT(playPanDialChanged(int)));