Mercurial > hg > svgui
diff widgets/CSVExportDialog.cpp @ 1571:9cd77efef37c
Model -> layer, + word wrap
author | Chris Cannam |
---|---|
date | Wed, 15 Jan 2020 13:58:11 +0000 |
parents | 3943553b95b0 |
children | a6e37c28d762 |
line wrap: on
line diff
--- a/widgets/CSVExportDialog.cpp Wed Jan 15 13:57:52 2020 +0000 +++ b/widgets/CSVExportDialog.cpp Wed Jan 15 13:58:11 2020 +0000 @@ -45,6 +45,7 @@ QVBoxLayout *vbox = new QVBoxLayout; QLabel *label = new QLabel(intro); + label->setWordWrap(true); vbox->addWidget(label); int space = ViewManager::scalePixelSize(2); @@ -133,7 +134,7 @@ m_selectionOnly = new QRadioButton (tr("Export only the current selection")); QRadioButton *fullDuration = new QRadioButton - (tr("Export the full duration of the model")); + (tr("Export the full duration of the layer")); selectionGroup->addButton(m_selectionOnly); selectionGroup->addButton(fullDuration); @@ -155,7 +156,7 @@ m_viewOnly = new QRadioButton (tr("Export only the height of the visible view")); QRadioButton *fullHeight = new QRadioButton - (tr("Export the full height of the model")); + (tr("Export the full height of the layer")); viewGroup->addButton(m_viewOnly); viewGroup->addButton(fullHeight);