# HG changeset patch # User Chris Cannam # Date 1579096691 0 # Node ID 9cd77efef37cd44e3feef1d1f4fc3e15785975b9 # Parent 9095fbec4e52b654dc6c659e9e249678a6b5a21f Model -> layer, + word wrap diff -r 9095fbec4e52 -r 9cd77efef37c widgets/CSVExportDialog.cpp --- 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);