changeset 1571:9cd77efef37c

Model -> layer, + word wrap
author Chris Cannam
date Wed, 15 Jan 2020 13:58:11 +0000
parents 9095fbec4e52
children 5f6fdd525158
files widgets/CSVExportDialog.cpp
diffstat 1 files changed, 3 insertions(+), 2 deletions(-) [+]
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);